body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(90deg, rgba(49, 209, 222, 1) 0%, rgba(67, 31, 93, 1) 35%, rgba(220, 102, 82, 1) 100%);
    background-image: url(bg.jpg);
    background-size: cover;
    color: aliceblue;

}

.main {
    text-align: center;
    background: rgb(49, 209, 222);
    background: linear-gradient(90deg, rgba(49, 209, 222, 1) 0%, rgba(67, 31, 93, 1) 35%, rgba(220, 102, 82, 1) 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    border: 2px solid grey;
    text-shadow: 5px green;
}

#wordDisplay {
    font-size: 24px;
    margin: 20px 0;
}

#guessInput {
    font-size: 18px;
    padding: 10px;
    margin-right: 10px;
}

#guessButton {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
}

#message {
    margin-top: 20px;
    font-size: 18px;
    color: rgb(239, 243, 15);
}

#timer,
#chances {
    font-size: 18px;
    margin-top: 10px;
}

#nextButton,
#tryAgainButton {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .main {
        padding: 10px;
    }

    #guessButton {
        margin-top: 20px;
    }

    #wordDisplay {
        font-size: 20px;
    }

    #guessInput {
        font-size: 16px;
    }

    #guessButton,
    #nextButton,
    #tryAgainButton {
        font-size: 16px;
    }
}