@font-face {
    font-family: 'Futura'; /* Name you want to use in CSS */
    src: url('../fonts/Futura-PT-Heavy/Futura-PT-Heavy.ttf') format('truetype'); /* Path to the font file */
    /* Consider adding WOFF/WOFF2 formats for better compatibility */
}
/* Custom CSS for the Christmas green background and festive elements */
body {
    /* Using a gradient for a richer green background similar to the image */
    background: linear-gradient(to bottom right, #004d00, #008000);
    background-attachment: fixed;
    font-family: sans-serif;
    font-family: 'Futura', Arial, sans-serif;
    background-image: url("../images/bg.webp");
    background-size: contain;
}
/* Styling for the central card containing the keypad */
.pin-card {
    background-color: rgba(0, 77, 0, 0.9); /* Semi-transparent dark green */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.keypad-button {
    /* Basic button styling to mimic the rounded, glowing effect */
    background-color: #F18A0C;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s;
    cursor: pointer;
    padding: 10px;
    border: 3px solid #3fe13f;
    border-radius: 35px;
    font-size: 30px;
}
.keypad-button:hover {
    transform: scale(1.05);
}
.control-button {
    /* Styling for C button */
    background-color: #FF4500; /* Red-orange color */
    cursor: pointer;
    padding: 10px;
    border: 3px solid #3fe13f;
    border-radius: 35px;
    font-size: 30px;
}
.ok-button {
    /* Styling for OK button */
    background-color: #32CD32; /* Lime green color */
    cursor: pointer;
    padding: 10px;
    border: 3px solid #3fe13f;
    border-radius: 35px;
    font-size: 30px;
}
