html,
body {
  height: 100%;
  background-image: linear-gradient(45deg, #9DF, #FD9);
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.username {
  font-size: 24px;
  font-weight: bold;
}

.sex-symbol {
  width: 48px;
}

.pfp {
  margin-top: 5%;
  width: 125px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.social {
  color:#fff;
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 25%;
  margin-right: 25%;
  background-color: #555;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition-duration: 0.2s;
  text-decoration: none;
  border: 1px solid #fff;
}

.social:visited {
  color:#fff;
}

.social:hover {
  background-color: #fff;
  color: #555;
}

.social-logo {
  padding: 10px;
  width: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  opacity: 50%;
}
