@import url(/assets/css/benguiat.css);

header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

header .logo {
  color: aliceblue;
  text-decoration: none;
  font-weight: 800;
  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 .icon {
  display: none;
}

.nav-container a {
  color: #f1f1f1;
  text-decoration: none;
}

.nav-container a:nth-child(1) {
  color: #a0e72e !important;
}

.nav-item a:hover {
  color: #a0e72e !important;
}
.nav-item 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-color: #333333;
  margin: 0;
  padding: 0;
}
.main-section {
  margin: 0;
  padding: 0;
}
.main-section-left {
  font-family: Benguiat;
  margin-left: 5%;
}
.main-section-left img {
  /* background-image: url(/assets/images/aboutMe.png); */
  /* background-size: contain;
  background-position-x: right;
  background-repeat: no-repeat; */
  float: right;
  width: 31%;
  margin-bottom: 20px;
}
.profile p {
  color: #fad02c;
  text-align: left;
  text-indent: 20px;
  padding-left: 25px;
}
.profile p::first-letter {
  font-size: 350%;
  color: rgb(255, 0, 0);
}
.profile h1 {
  color: #e9eaec;
}
.skills p {
  color: #fad02c;
  padding-left: 25px;
}
.skills h1 {
  color: #e9eaec;
}

/* Responsive */
@media screen and (min-width: 320px) and (max-width: 480px) {
  header {
    font-family: Benguiat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 2%;
  }

  header a {
    align-self: start;
  }
  .nav {
    justify-self: end;
    float: right;
    padding-top: 10px;
    padding-right: 10px;
  }

  .nav .icon {
    color: #a0e72e;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 20px 0px 0px;
    font-size: 30px;
  }
  .nav .icon:focus {
    color: black;
  }

  .nav .nav-container {
    display: none;
    text-align: right;
    padding: 35px 10px 0px 0px;
  }
  .nav-container a {
    text-decoration: none;
    font-size: 20px;
    display: block;
  }
  .nav-container a:nth-child(2) {
    color: #a0e72e;
  }
  .nav-container a:hover {
    color: #a0e72e !important;
  }
  .nav-container .nav-item {
    padding: 0px;
    position: relative;
    animation-name: nav-animation;
    animation-duration: 4s;
    animation-delay: -2s;
  }

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

  .main-section-left img {
    width: 90%;
    float: right;
  }

  .main-section-left {
    font-family: Benguiat;
    font-size: 0.9em;
    margin-left: 20px;
    width: 100%;
  }

  .profile p {
    text-align: left;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .main-section-left img {
    width: 60%;
    margin-right: 20px;
  }

  .main-section-left {
    font-family: Benguiat;
    font-size: 1em;
    margin-left: 20px;
  }

  .profile p {
    text-align: left;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .main-section-left img {
    width: 40%;
    margin-right: 20px;
  }
  .main-section-left {
    font-family: Benguiat;
    font-size: 1.1em;
    margin-left: 20px;
  }
  .profile p {
    text-align: left;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
}

@media screen and (min-width: 1201px) {
}

/* Predefined Font-size Classes */
.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;
}
