/* Box Model Hack */
*{
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #443c7a;
background: radial-gradient(circle,rgba(68, 60, 122, 1) 0%, rgba(23, 23, 176, 1) 35%, rgba(0, 212, 255, 1) 58%, rgba(255, 255, 255, 1) 99%);
  
}

#colorForm {
  display:flex;
  flex-direction: column;
  
}

h1{
 font-size: 55px;
 height: 50px;
 margin-top: 7%;
 color: aqua;

}


/* inputs */
#colorInputHere{
  height: 40px;
  width: 200px;
  font-size:20px;
  display:flex;
  justify-content: center;
  align-self: center;
  color: white;
  font-display: solid 2px rgb(5, 2, 84);

} 

#colorInput{
  height: 30px;
  width:120px;
  font-size:16px;
  font-weight: 500;
  color: rgb(5, 2, 84);
  display:flex;
  border: 3px solid aqua;
  justify-content: center;
  align-self: center;
}


/* submit button */
#submitColor {
font-size: 16px;
cursor: pointer;
display:flex;
justify-content: center;
align-self: center;
margin-bottom: 30px;
margin-top: 30px;

  background-color: rgba(255, 255, 255, 0);
  color: aqua;
  border: 2px solid aqua;
  font-weight: 600;
  padding-top: 5px;
  
  position: relative;
  text-align: center;
  
  width: 35%;
  height: 35px;
  position: relative;
  cursor: pointer;
  
 
}



@media (min-width: 768px) {
  .button-53 {
    padding: .75rem 3rem;
    font-size: 1.25rem;
  }
}


/* swatch box */
.color-box {
  width: 100px;
  height: 100px;
  margin: 20px;
  
}


/* result section */
#results{

font-size: 16px;
width: 50vh;
height: 50vh;

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

}

#results p {
  margin: 5px 0;
  font-size: 18px;
  font-weight: 400;
  color: white;
  text-wrap: wrap;
  width: 190px;
  text-align: center;
}