@import url(https://fonts.googleapis.com/css?family=Rowdies);
* {
  box-sizing: border-box;
  font-family: "Rowdies", sans-serif;
}

body {
  background: rgb(0, 180, 180);
  background: linear-gradient(90deg, rgba(0, 180, 180, 1) 25%, rgba(180, 180, 0, 1) 75%);
}

.intro {
  color: rgb(250, 229, 40);
  margin-top: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro > h1 {
  font-size: 2.5rem;
}

.abilities {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: rgb(53, 49, 2);
}

.social {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-height: 600px) {
  .social {
    position: absolute;
    top: 25px;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
