html,
html,
body {
    background-color: rgb(248, 131, 121);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 0.75em; /* smaller base font */
    height: 100vh;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.white {
    color: white;
}

#titleWrapper {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 2em; /* 64px → 48px */
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#inputWrapper {
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#inputWrapper label,
#inputWrapper input,
#inputWrapper button {
    font-size: 1.5em; /* 48px → 36px */
}

#inputWrapper input, 
#inputWrapper button {
    padding: 11px;
    margin-top: 11px;
    margin-bottom: 11px;
    width: 90%;
    max-width: 900px;
}

#inputWrapper button {
    cursor: pointer;
    background-color: #ff6347;
    border: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

#inputWrapper button:hover {
    background-color: #ff4500;
}

#yearInput {
    padding: 8px;
    margin: 0px;
    width: 150px;
}

/* Responsive Layout for smaller screens */
@media (max-width: 768px) {

    .container {
        flex-direction: column;   /* stack columns vertically */
        align-items: center;
        gap: 20px;                /* smaller gap */
        width: 90%;               /* more natural on phones */
        margin-bottom: 20px;
    }

    img {
        width: 100%;              /* images fill width nicely */
    }

    .column2 {
        padding-left: 0;          /* no weird side padding */
        text-align: center;       /* better for narrow screens */
    }

    .bottominfo {
        width: 90%;               /* shrink width for phone screens */
        margin-bottom: 20px;
    }

    button {
        width: 90%;               /* buttons fill width naturally */
        max-width: 400px;         /* still capped size */
    }
}

