/******************************************
/* HOT GARBAGE - PLEASE DON'T MIMIC THIS CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
  font-family: 'EB Garamond', serif;
}

/******************************************
/* LAYOUT
/*******************************************/
h1, h2, form{
  text-align: center;
  font-weight: 500;
}
button{
  display: block;
  margin: 20px auto;
}
ul{
  width: 100px;
  height: 200px;
  border: 3px solid black;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
li{
  text-align: center;
  width: 94px;
  height: 49px;
  border: 1px solid black;
}
h2{
  font-size: 100px;
  color: rgb(0, 0, 0);
  font-weight: bold;
}
/******************************************
/* ADDITIONAL STYLES
/*******************************************/
body{
  background: rgb(195, 183, 195);
  background-image: url("../mountain.png"); 
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
h1{
  margin: 5em 0 0 0;
}
form{
  margin: 2em 0 0 0;
  display: flex;
  justify-content: center;
}
div{
  padding: 0 1em;
}
input{
  border-radius: 5%;
}
h2 {
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #ccc,
               0 3px 0 #ccc, 0 4px 0 #ccc,
               0 5px 0 #ccc, 0 6px 0 #ccc,
               0 7px 0 #ccc, 0 8px 0 #ccc,
               0 9px 0 #ccc, 0 10px 0 #ccc,
               0 11px 0 #ccc, 0 12px 0 #ccc,
               0 20px 30px rgba(0, 0, 0, 0.5);
}
p{
  text-align: center;
}
@media (max-width: 950px){
  body{
    background: rgb(195, 183, 195);
    background-image: url("../mountain.png"); 
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: auto;
  }
}
