header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 999;
}

header .logo {
  color: aliceblue;
  font-weight: 800;
  text-decoration: none;
  font-size: 2em;
  padding-left: 15%;
}

header .clearfix {
  visibility: hidden;
}

.nav-container {
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.nav-container a {
  color: #f1f1f1;
  text-decoration: none;
}
.nav-container a:hover {
  color: #a0e72e !important;
}
.nav-container a:visited {
  color: #f1f1f1;
}
.nav-container .nav-item {
  padding: 30px;
  position: relative;
  animation-name: nav-animation;
  animation-duration: 4s;
  animation-delay: -2s;
}

@keyframes nav-animation {
  0% {
    left: 0px;
    top: 0px;
  }
  50% {
    left: 200px;
    top: 0px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}

body {
  background: #333333;
  margin: 0;
  padding: 0;
}

.main-section {
  background-image: url(/assets/images/index.png);
  position: fixed;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main-section .title {
  position: absolute;
  font-size: xxx-large;
  top: 440px;
  right: 330px;
  color: #ffffff;
}
.main-section .title::first-letter {
  font-size: 200%;
  color: rgb(255, 0, 183);
}

.main-section .gmail-logo {
  position: absolute;
  bottom: 20%;
  left: 5%;
  font-size: 35px;
  color: yellow;
}
.main-section .github-logo {
  position: absolute;
  bottom: 15%;
  left: 5%;
  font-size: 35px;
  color: yellow;
}
.main-section .linkedin-logo {
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-size: 35px;
  color: yellow;
}
.main-section .instagram-logo {
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-size: 35px;
  color: yellow;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
  .main-section {
    background: url(/assets/images/index.png) no-repeat center center fixed;
    background-size: 210% 100%;
  }

  .main-section .title {
    position: absolute;
    font-size: xx-large;
    top: 380px;
    right: 10px;
    color: #ffffff;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .main-section {
    background: url(/assets/images/index.png) no-repeat center center fixed;
    background-size: 200% 120%;
  }

  .main-context .title {
    font-size: xxx-large;
    top: 370px;
    right: 75px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .main-section {
    background: url(/assets/images/index.png) no-repeat center center fixed;
    background-size: 140% 125%;
  }

  .main-context .title {
    top: 370px;
    right: 205px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .main-context .title {
    top: 440px;
    right: 345px;
  }
}

@media screen and (min-width: 1201px) {
  .main-context .title {
    top: 55%;
    right: 31%;
  }
}

.text-small {
  font-size: 0.8em;
}
.text-xsmall {
  font-size: 0.6em;
}
.text-large {
  font-size: 1.2em;
}
.text-xlarge {
  font-size: 1.4em;
}
.text-underline {
  text-decoration: underline;
}
.text-ultralight {
  font-weight: 200;
}
.text-light {
  font-weight: 300;
}
.text-regular {
  font-weight: normal;
}
.text-medium {
  font-weight: 500;
}
.text-bold {
  font-weight: bold;
}
.text-black {
  font-weight: 900;
}
