* {
    font-family: 'Courier New', Courier, monospace;
    color: aliceblue;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    word-spacing: 3px;
    line-height: 1.5;
    text-transform: uppercase;
}

#body {
    background-color: #000000;
}

#header {
    background-color: #578FCA;
    padding: 20px;
    font-size: 100px;
    border-bottom: 5px solid white;
}

#main {
    background-color: #578FCA;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.attempts {
    padding: 10px;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 10px;
}

.text {
    font-size: 30px;
    text-transform: capitalize;
}

.text > div {
    margin: 10px;
    padding-left: 15px;
    padding-right: 15px;
}

.guessBox {
    font-size: 20px;
    color: black;
    margin: 10px;
    cursor: pointer;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 60%;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.guessBox:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

#feedback {
    font-size: 30px;
    background-color: rgb(0, 0, 0);
    margin: 10px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    padding: 15px;
    filter: brightness(1.2);
}