html, body {
    height: 100vh;
    margin: 0;
    padding: 0;

    transition: 1s ease;
    animation: backgroundMove 25s ease-in-out infinite;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #444 0%, #111 100%);
    background-position: center;
    background-repeat: no-repeat;

}


.wrapper {
    display: grid;
    grid-template-columns: repeat(20, 5vw);
    grid-template-rows: repeat(20, 5vh);
    height: 100vh;
    width: 100vw;
}
.header {
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(10, 10vw);
    grid-template-rows: repeat(5, 2vh);
    align-items: center;
    background-color: #D9D9D9;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 25px;
    grid-column: 1/21;
    grid-row: 1/3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo {
    grid-column: 1 / 2;
    height: 200px;
    width: auto;
    grid-row: 4;
    justify-content: center;
}
.rounded-text {
    grid-column: 1/11;
    grid-row: 2;
    text-align: center;
    letter-spacing: 7px;
    font-family: 'Bebas Neue', sans-serif;
}
.header-text {
    grid-column: 1/11;
    text-align: center;
    color: #443F3F;
    letter-spacing: 25px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    grid-row: 4;
}
.guessSubmit {
    
    font-family: "Bebas Neue";
    text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 20px #eee;
   border-radius: 30px;
   border-color: transparent;
  
    width: 9vw;
    height: 9vh;
    font-size: 55px;
    grid-row: 11/13;
    grid-column: 12/15;
    justify-self: center;
    align-self: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition-duration: 0.3s;
}


.guessSubmit {background-image: linear-gradient(to right, #1D976C 0%, #93F9B9  51%, #1D976C  100%)}


 .guessSubmit:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
    cursor: pointer;
 }




.Enter {
    color: seashell;
    grid-row: 9/12;
    grid-column: 7/13;
    text-align: center;
    text-justify: center;
    font-size: 64px;
    font-family: "Comic Neue";
}
#guessField {
    width: 50vh;
    height: 12vh;
    background: #fcfcfc;
    border: 2px solid #000000;
    border-radius: 50px;
    grid-column: 7/13;
    grid-row: 11/13;
    align-self: center;
    justify-self: center;
    font-size: 50px;
    font-family: "Comic Neue";
}
.lastresult {
    background: #FFD78E;
    border-radius: 75px;
}
.lastResult {
    font-size: 50px;
    font-family: 'Comic Neue', sans-serif;
    color: white;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50px;
    grid-row: 15/17;
    grid-column: 8/14;
    text-align: center;
   
   
}
.picture {
    grid-column: 1/21;
    grid-row: 5/8;
    border-radius: 2cm;
    height: 25vh;
    width: 40vw;
    align-self: center;
    justify-self: center;

    object-fit: cover;
    border: 5px solid #ffff;;
}
.previous{   
    grid-row: 9/12;
    grid-column: 1/7;
    text-align: center;
    text-justify: center;

    font-size: 64px;
    font-family: "Comic Neue";

    color: rgb(255, 255, 255);



}
.guesses {
   

    font-size: 40px;
    font-family: "Comic Neue";
    color: rgb(0, 0, 0);
    grid-column: 2/6;
    grid-row: 12/19;
    z-index: 1;
}
.gul-ruta{
    grid-column: 1/7;
    grid-row: 11/14;
    justify-self: center;
    border-radius: 20px;
    width: 80%;
    background-color: #ffffff;
    

}
.resultParas {
    grid-column: 1/21;
    grid-row: 1/21;
    display: grid;
    grid-template-columns: repeat(20, 5vw);
    grid-template-rows: repeat(20, 5vh);

}

.resetButton{
    grid-column: 10/12;
    grid-row: 12/14;



    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #000000;
    border-radius: 40px;
    display: block;
    font-family: 'Bebas Neue';
    font-size: 30px;
    border-color: transparent;

}
   .resetButton {background-image: linear-gradient(to right, #000000 0%, #e74c3c  51%, #000000  100%)}

      .resetButton:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
        cursor: pointer;
      }
     