body {
  background-color: #030d16;
  color: #fff;
  font-size: 16px;
  font-weight: bold;

  font-family: 'Satoshi', sans-serif;

  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}


.horizon {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 1024px;
  background: #00ff00;

  background: linear-gradient(
    -180deg,
    rgba(255,28,66,1) 0%,
    rgba(3,13,22,1) 25%,
    rgba(3,13,22,1) 100%);
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  margin: 60px 30px;

  text-align: center;
}

.pic {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;

  background-image: url('profile-pic.jpg');
  background-size: cover;
}

.username {
  font-weight: bold;
  font-size: 28px;
  margin: 30px 0;
}

.bio {
  margin: 30px 0 60px 0;
}

a, 
a:link, 
a:hover, 
a:visited, 
a:active {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  border-bottom: 2px solid #fff
}

a.button, 
a.button:link, 
a.button:hover, 
a.button:visited, 
a.button:active {
  text-decoration: none;
  color: #030d16;
}

a.button {
  display: block;
  border-radius: 37px;
  margin: 30px 0;
  background-color: white;
  height: 74px;
}

.label-group {
  height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn-title {
  font-size: 20px;
  font-weight: bold;
}

.btn-subtext {
  margin-top: 4px;
  font-size: 12px;
  opacity: 60%;
  text-transform: uppercase;
}