body {
    background-color: #f2f2f2;
    background: radial-gradient(circle, #f6d365, #fda085);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
h1 {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    align-items: center;
    margin-left: 37.5%;
    color: rgb(232, 232, 8);
    width: 25%;
    align-content: center;
    text-align: center;
    border-radius: 10px;
    background-color: rgb(4, 80, 106);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    }

#game {
    width: 60%; /* 600px */
    height: 50%; /* 400px */
    margin: 50px auto;
    background-color: rgb(150, 223, 221);
    border: 4px solid rgb(44, 29, 29);
    padding: 20px;
    padding-bottom: 50px;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 10px 3px #000000;
    align-content: center;
}

input[type="radio"] {
    background-color: #ef6363; /* set the background color */
    border: 1px solid #ff2f2f; /* add a border */
    padding: 5px; /* add some padding */
  }

/* Style the text */
.cont {
    display: inline-block;
    margin-left: 10px;
    padding: 5px;
    background-color: #f4ea67; 
    border: #454545 solid;
    border-radius: 5px;
}

  /* Style the selected radio button */
input[type="radio"]:checked + .cont {
    background-color: #48de11; 
}

.title{
    background-color: #fda085;
    min-width: fit-content;
    flex-basis: auto; /* item will take up the width of its content */
    flex-shrink: 0; /* item can shrink to fit the container */
    border: 3px solid #d9b318;
    border-radius: 15px;
    width: 50%;
    align-content: center;
    margin-left: 25%;

}

#word-options {
    font-size: 30px solid;
    color: rgb(32, 30, 30); 
    font-weight: bold
}

.invisible {
    color: transparent;
  }
  

.word{
    letter-spacing: 4px;
    }

#game h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    }
    
#word {
    display: flex;
    color: rgb(14, 35, 170);
    margin-right: 2px;
    font-size: 40px;
    margin-top: 20px;
    justify-content: center;
}

#letters {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.letter {
    display: inline-block;
    margin: 10px;
    padding: 8px 12px;
    border: 2px solid rgb(34, 31, 29);
    /* padding-top: 1%;
    padding-bottom: 1%; */
    cursor: pointer;
    width: 4.5%;
    height: 5%;
    font-size: 40px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 10px 5px #322d2d;
    margin-bottom: 0%;
    padding-bottom: 0%;
}

.letter:hover {
    background-color: rgb(115, 197, 164);
    transform: scale(1.1);
}

.letter.selected {
    background-color: rgb(68, 11, 45);
    color: #fff;
    pointer-events: none;
}

@media (max-width: 600px) {
#game {
width: 90%;
}
}

#restart-button {
    padding: 10px 20px;
    background-color: #3e8e41;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 5px #888888;
    text-shadow: 1px 1px 2px black;
    font-size: 18px;
    font-weight: bold;
    /* margin-top: 15%; */
    margin-bottom: 5%;

}

#restart-button:hover {
    background-color: #ddda24;
}