/* Box Model Hack */
* {
     box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/
body{
  margin: 0;
  height: 100vh;
  display: grid;
  place-items:center;
  background-image: url(../img/space.jpg);
  background-position: center;
  background-size: contain;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 62.5%;

}


/******************************************
/* LAYOUT
/*******************************************/

.wrapper{
  width:90%;
  height: 900px;
  background: rgba(232, 232, 232, .8);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  object-fit: contain;
}

.wrapper h1{
  font-size: 2.5rem;
  text-transform: capitalize;
}



#userInput{
  width: 25%;
  height: auto;
  font-size: 1rem;
  border: none;
  border-radius: .3rem;
}

#click{
  width: 25%;
  height: auto;
  font-size: 1rem;
  margin-top: 20px;
  border-radius: .5rem;
}

#click:hover{
  background-color: #A491D3;
  cursor: grab;
}

h2{
  width: 100%;
  height: auto;
  font-size: 3rem;
  text-align: center;
}

.results{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 600px;
  text-align: center;


}

#zodiacSign{
  width: 100%;
  height: 55px;
  text-transform: uppercase;
  font-size: 2.5rem;
}

#putTextHere{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  padding-top: 20px;
  font-size: 1.5rem;
  line-height: 1.2;

}




/******************************************
/* ADDITIONAL STYLES
/*******************************************/


@media screen and (max-width:600px) {
  .wrapper{
    display: block;
    width: 80%;
  }
}

@media screen and (max-width:600px) {
  .wrapper h1{
    font-size: 1.5rem;
    text-align: center;


  }
}

@media screen and (max-width:600px) {
  #userInput{
    width: 50%;
    display: block;
    margin-left: 23%;
    margin-top: 50px;
  }
}

@media screen and (max-width:600px) {
  #click{
    display: block;
    margin-left: 36%;
  }
}

@media screen and (max-width:600px) {
  .results h2{
    display: block;
    width: 100%;
    height: auto;
    padding-top: 100px;
  }

}

@media screen and (max-width:600px) {
  .results{
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 600px;
  }

}


@media screen and (max-width: 600px) {
  #putTextHere{
    margin-top: 100px;
    object-fit: contain;
    object-position: center;
    font-size: 1rem;
  }

}
