body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("./images/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Style for the main container (first definition kept as in your file) */
.container {
    background-color: rgba(255, 255, 255, 0.8); /* Transparent background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

/* Style for input fields (as in your file) */
input[type="number"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Style for the button */
button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* (Your second body block is removed to avoid overriding the PNG background) */

/* Second container rule (kept exactly as in your file; this will override some props above) */
.container {
    background-color: #ffffff5b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    box-shadow: 5px 5px 5px black;
}

h1 {
    color: #333;
}

input[type="text"], input[type="number"] {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

.result {
    background-color: #e7f3fe;
    color: #333;
    padding: 10px;
    margin-top: 10px;
    font-style: italic;
}

#date {
    transition: transform 0.3s ease;
}
#date:hover {
    transform: scale(1.05);
    border: 2px solid black;
}
#month {
    transition: transform 0.3s ease;
}
#month:hover {
    transform: scale(1.05);
    border: 2px solid black;
}
#year {
    transition: transform 0.3s ease;
}
#year:hover {
    transform: scale(1.05);
    border: 2px solid black;
}
#submit {
    transition: transform 0.3s ease;
}
#submit:hover {
    transform: scale(1.05);
    border: 2px solid rgb(5, 81, 5);
}
