html {
  font-size: 10px;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #ffffff;
  display: flex;
  min-height: 100vh;
  align-items: center;
  background-size: 100px 50px;
}

.voiceinator {
  padding: 2rem;
  width: 50rem;
  margin: 0 auto;
  border-radius: 1rem;
  position: relative;
  background: white;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.1);
}

h1 {
  margin: -0rem 0 0rem -0rem;
  padding: .5rem;
  background: #06BBCC;
  border-bottom: 5px solid #04A9A4;
  text-align: center;
  font-size: 5rem;
  font-weight: 100;
  text-shadow: 3px 3px 0 #04A9A4;
}

.voiceinator input,
.voiceinator button,
.voiceinator select,
.voiceinator textarea {
  width: 100%;
  display: block;
  margin: 10px 0;
  padding: 10px;
  border: 0;
  font-size: 2rem;
  background: #F7F7F7;
  outline: 0;
}

textarea {
  height: 20rem;
}

.voiceinator button {
  background: #06BBCC;
  border: 0;
  width: 49%;
  float: left;
  font-family: 'Pacifico', cursive;
  margin-bottom: 0;
  font-size: 2rem;
  border-bottom: 5px solid #04A9A4;
  cursor: pointer;
}

.voiceinator button:active {
  top: 2px;
}

.voiceinator button:nth-of-type(1) {
  margin-right: 2%;
}

.voiceinator {
  width: 50vw;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.socials {
  font-size: 2rem;
  clear: both;
  text-align: center;
  padding: 5rem 2rem 2rem 2rem;
}

.fa-github {
  font-size: 35px;
}

.socials a {
  color: black;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .voiceinator {
      width: 33rem;
  }
  h1 {
      font-size: 3rem;
  }
}
