* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
    height: 100vh;
    background-color: #FF3CAC;
    background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    
    
  display: flex ;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#wrapper {
    
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  width: 80vw;
  /* border: 4px solid red; */
  gap: 10px;
  border-radius: 15px;
  background-color: #FEE140;
background-image: linear-gradient(90deg, #FEE140 0%, #FA709A 100%);
border-width: 20px;
border-style: ridge; 
Border-color: #a253c9
}
#guessField {
  padding-left: 5px;
  font-size: 30px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid black;
  background-color: rgb(199, 199, 186);
  width: 212px;
}
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.guessSubmit{
  border: none;
  padding: 5px 5px;
  background-color: rgb(8, 126, 230);
  color: rgb(33, 31, 31);
  border-radius: 10px;
  border: 2px solid white;
  position: relative;
  left: 50px;
}
.guessField:focus{
  /* border: none; */
  outline: none;
}
.resultParas{
  position: relative;
  left: 50px;

}
.tracker{
  background-color: rgb(163, 157, 157);
  border-radius: 8px;
  padding: 4px;
}
.lowOrHi{
  color: white;
  font-size: 20px;
}
p{
  font-size: 24px;
}
@media screen and (max-width:730px )  and (min-width: 560px){
  p{
    font-size: 22px;
  }
  
}
@media screen and (max-width: 550px) {
  #wrapper{
    padding: 0 5px;
  }
  .form{
    align-items: left;
  }
  #guessField {
    text-align: center;
    
    width: 50px;
  }
  #guess{
    font-size: 12px;
  }
  .resultParas,#subt{
    font-size: 10px;
    position: static;
  }
  .guessSubmit{
    font-size: 10px;
  }
  h1{
    font-size: 15px;
  }
  .lowOrHi{
   
    font-size: 16px;
  }
  p{
    font-size: 12px;
  }
}