body {
    text-align: center;
    margin: 20px;
    background: url(image/background.gif);
    background-size: cover;
}

h1 {
    color: rgb(224, 32, 250)
}

hr {
    border: 1px solid #61dafb;
}

h2 {
    color:aliceblue;
    text-align: center;
    margin-bottom: 5px;
  }

h3 {
    color: #ff5555;
    /* color:aliceblue; */
    margin: 5px;
}

#wordContainer {
    font-size: 30px;
    margin: 10px 0;
    color: #61dafb;
}

#incorrectGuesses {
    font-weight: bold;
    color: #ff5555;
}

#message{
    margin: 5px;
    font-size: 18px;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    background-color: #8f61fb; 
    /* display: none; */
    display: inline-block;

}
#text-input {
    margin-top: 5px;
    display: block;
}

input {
    border-radius: 0.5rem;
    padding: 10px;
    margin-right: 10;
    font-size: 20px;
    background-color: #fff;
    color: #282c36;
}

.button {
    border-radius: 0.5rem;
    padding: 8px 15px;
    font-size: 16px;
    background-color: #6199fb;
    color: #fff;
    cursor: pointer;
    border: none;
}

.button:hover {
    background-color: #64cc4f;
}

#divRestart{
    display: none;
}

.rainbow {
    display: inline-block;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: bold;
    color: rgb(12, 12, 12);
    text-decoration: none;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1, #fbc2eb, #fad0c4, #ff9a9e);
    background-size: 100%;
    border: 2px solid rgba(52, 214, 214, 0.822);
    border-radius: 10px;
    text-align: center;
    animation: gradient-animation 6s ease infinite;
    box-shadow: 0 0 10px #ff9a9e, 0 0 20px #fad0c4, 0 0 30px #fbc2eb;
}

.rainbow:hover {
    color: rgb(12, 12, 12);
    background: linear-gradient(45deg, #a18cd1, #fbc2eb, #fad0c4, #ff9a9e);
    box-shadow: 0 0 15px #a18cd1, 0 0 25px #fbc2eb, 0 0 35px #fad0c4;
}

#resbutton {
    margin-top: 5px;
    border-radius: 0.5rem;
    padding: 12px 50px;
    font-size: 20px;
    background-color: #103370;
    color: #fff;
    cursor: pointer;
    border: none;
}
#resbutton:hover {
    background-color: #64cc4f;
}

#remark {
    margin-top: 10px;
    width: 100%; 
    height: 300px; 
    /* background-image: url();  */
    background-size: contain;
    background-position: center; 
    background-repeat: no-repeat; 

}
