html {
    height: 100%;
    font-family: sans-serif;
  }

  body {
    height: 100%;
    margin: 0 auto;
  }

  #wrapper {
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-columns: 20% 20% 20% 20% 20%;
    grid-template-rows:  20% 20% 10% 10% 20% 20%;
  }
  
  .form input[type="number"] {
    width: 300px;
    height: 25px;
    grid-row: 4;
    z-index: 10;
  }

  .form {
    grid-row: 4;
    z-index: 10;
    grid-column: 3;
  }


  label {
    color: white;
    font-size: 20px;
  }

  .guessField {
    border-radius: 6px;
  }

  .guessSubmit {
    margin-top: 5%;
    margin-left: 27%;
    background-color:  rgb(67, 224, 230);
    border-radius: 100px;
    box-shadow: rgba(44, 177, 187, 0.2) 0 -25px 18px -14px inset,rgba(44, 163, 187, 0.15) 0 1px 2px,rgba(44, 158, 187, 0.15) 0 2px 4px,rgba(44, 158, 187, 0.15) 0 4px 8px,rgba(44, 165, 187, 0.15) 0 8px 16px,rgba(44, 168, 187, 0.15) 0 16px 32px;
    color: rgb(6, 72, 75);
    cursor: pointer;
    display: inline-block;
    font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .guessSubmit:hover {
    box-shadow: rgba(44, 168, 187, 0.35) 0 -25px 18px -14px inset,rgba(44, 173, 187, 0.25) 0 1px 2px,rgba(44, 165, 187, 0.25) 0 2px 4px,rgba(44, 163, 187, 0.25) 0 4px 8px,rgba(44, 163, 187, 0.25) 0 8px 16px,rgba(44, 173, 187, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
  }
  

  .lastGuess {
    color: white;
    padding: 3px;
    z-index: 100;
    grid-row: 5;
  }

  .resultParas {
    grid-row: 5;
    z-index: 100;
    grid-column: 2/5;
  }

  #button {
    
    position: absolute;
    left: 45%;
    top: 80%;
   

/* CSS */
  background-color:  rgb(67, 224, 230);
  border-radius: 100px;
  box-shadow: rgba(44, 177, 187, 0.2) 0 -25px 18px -14px inset,rgba(44, 163, 187, 0.15) 0 1px 2px,rgba(44, 158, 187, 0.15) 0 2px 4px,rgba(44, 158, 187, 0.15) 0 4px 8px,rgba(44, 165, 187, 0.15) 0 8px 16px,rgba(44, 168, 187, 0.15) 0 16px 32px;
  color: rgb(6, 72, 75);
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

#button:hover {
  box-shadow: rgba(44, 168, 187, 0.35) 0 -25px 18px -14px inset,rgba(44, 173, 187, 0.25) 0 1px 2px,rgba(44, 165, 187, 0.25) 0 2px 4px,rgba(44, 163, 187, 0.25) 0 4px 8px,rgba(44, 163, 187, 0.25) 0 8px 16px,rgba(44, 173, 187, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}
  

  h1 {
    color: white;
    grid-row: 2;
    grid-column: 2/5;
    z-index: 100;
    font-size: 60px;
    justify-self: center;
  }

  p {
    color: white;
    z-index: 100;
    grid-column: 2/5;
    grid-row: 3;
    font-size: 20px;
    justify-self: center;
  }

  video {
    grid-column: 1/6;
    grid-row: 1/6;
    width: 100%;
  }