@import url('https://fonts.googleapis.com/css2?family=Flavors&family=Griffy&family=Macondo&family=Poppins:wght@400;600&display=swap');
* {
    padding: 0;
    margin: 0;
}

body {

    background-color: rgb(0, 0, 0) ;
}

.container {
    background-color: rgb(0, 0, 0);
    position: relative;
    text-align: center;

}

.heading {
    
    font-size: 2.5em;
    letter-spacing: 3px;
    font-family: 'Griffy', cursive;
    text-align: center;
    margin-top: 10%;
    animation: h1ani 0.5s infinite;
    -webkit-animation:h1ani 0.5s infinite;

}
@keyframes h1ani {
  0% {
        text-shadow: 4px 4px 20px rgba(255, 255, 255, 0.91);
        color: rgb(255, 217, 67);
    }
    40% {
        text-shadow: 4px 1px 9px rgba(255, 248, 49, 0.91);
        color: rgb(255, 255, 255);
    }
    100% {
        text-shadow: 4px 4px 20px rgba(255, 255, 255, 0.91);
        color: rgb(255, 217, 67);
    }
 }
 @-webkit-keyframes  h1ani {
    0% {
          text-shadow: 4px 4px 20px rgba(255, 255, 255, 0.91);
          color: rgb(255, 138, 35);
      }
      40% {
          text-shadow: 4px 1px 9px rgba(255, 248, 49, 0.91);
          color: rgb(255, 162, 86);
      }
      100% {
          text-shadow: 4px 4px 20px rgba(255, 255, 255, 0.91);
          color: rgb(255, 236, 173);
      }
   }


   
.heading2 {
    color: rgb(255, 255, 255);
    font-size: 2em;
    letter-spacing: 3px;
    font-family: 'Griffy', cursive;
    text-align: center;
}

.heading3 {
    color: rgb(0, 231, 85);
    font-size: 1.8em;
    font-family: 'Poppins', sans-serif;
    text-align: center;

}

.home-logo-img {
    width: 70vw;
    margin: 20px auto;

}
.home-jar-img{
  
   z-index: 10;
  margin: -400px auto 10px auto;
}

.player-info {
    
    padding: 0px 20px;
    text-align: center;
    color: aliceblue;
}

.playername-label {
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 20px;
}

.player-info input {
    width: 300px;
    height: 40px;
    border: none;
    border-radius: 5px;
    background-color: rgb(255, 234, 182);
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0px;
    padding: 5px 10px;
    word-spacing: 6px;

    letter-spacing: 3px;

}

button {
    width: 320px;
    height: 60px;
    border: none;
    border-radius: 5px;
    background-color: rgb(255, 179, 0);
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;

}

#game-error {
    color: rgb(255, 0, 0);
    font-size: 1em;
    margin: 20px auto;
    display: block;
}