html,
body {
  padding: 0;
  margin: 0;
}

.container {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: "Lexend Deca";
  font-weight: 500;
  background-color: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(28, 28, 28, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(28, 28, 28, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(28, 28, 28, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#1c1c1c",GradientType=1);
  background-repeat: no-repeat;
}

.title {
  font-size: 3.5em;
  line-height: 125%;
  font-weight: inherit;
}

.subtitle {
  font-size: 1.6em;
  font-weight: inherit;
}

hr {
  width: 350px;
  margin: 30px 0;
  padding: 0;
  height: 10px;
  border: 0;
  background: #dba400;
  animation-name: example;
  animation-duration: 1s;
  transition: all 3s ease-in-out;
}

@keyframes example {
  from {
    width: 100px;
  }

  to {
    width: 1;
  }
}

hr:hover,
hr:active {
  background: #fff;
  width: 400px;
}

.email {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 1.9em;
  max-width: 350px;
  text-decoration: none;
  color: #dba400;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.email--mobile {
  display: none;
}

::selection {
  background: #dba400;
  color: #fff;
}

.side-penguin {
  margin: 0;
  padding: 0;
  height: 100%;
  z-index: 1;
  position: fixed;
  animation: fadein 5s;
  -moz-animation: fadein 5s; /* Firefox */
  -webkit-animation: fadein 5s; /* Safari and Chrome */
  -o-animation: fadein 5s; /* Opera */
}

.content {
  position: relative;
  margin-left: auto;
  margin-right: 20vw;
  z-index: 100;
}

.social-icon {
  color: white;
  font-size: 2.3em;
  font-weight: 400;
  padding: 5px;
  margin: 0 3px;
  transition: all 0.2s ease-in-out;
}

.instagram:hover,
.instagram:active {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.twitter:hover,
.twitter:active {
  color: #1da1f2;
}

.gitlab:hover,
.gitlab:active {
  color: #fc6d26;
}

.telegram:hover,
.telegram:active {
  color: #27a7e5;
}

.reddit:hover,
reddit:active {
  color: #ff4500;
}

.github:hover,
.github:active {
  color: #807070;
}

@media (max-width: 1200px) {
  .side-penguin {
    opacity: 90%;
  }
}

@media (max-width: 600px) {
  .content {
    margin-left: 20px;
  }

  hr {
    width: 270px;
  }

  .email--desktop {
    display: none;
  }

  .email--mobile {
    display: inline;
  }

  .side-penguin {
    opacity: 90%;
    margin-left: -50px !important;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
