body {
  background-color: #121212;
  color: rgba(256, 256, 256, 0.87);
  margin: 0;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  letter-spacing: 3px;
}
nav {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #1f1b24;
  min-height: 8vh;
  position: fixed;
  top: 0;
  z-index: 2;
}
#logo {
  letter-spacing: 3px;
  text-transform: uppercase;
}

.navlinks {
  display: flex;
  width: 35%;
  justify-content: space-between;
  height: 100%;
}
.navlinks a {
  color: rgba(256, 256, 256, 0.87);
  text-decoration: none;
  letter-spacing: 3px;
}
.navlinks li {
  list-style: none;
  padding: 10px;
}
#navbar a:hover {
  color: #03dac6;
}
#navbar .burger {
  display: none;
}
main {
  margin-top: 50px;
}
section {
  padding: 30px 0;
}
#about {
  padding: 170px 0 50px 0;
}
.section-title {
  color: #03dac6;
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
#sub-intro {
  font-size: 16px;
  color: #03dac6;
}
#main-intro {
  font-size: 20px;
  margin: 0;
  font-weight: 300;
}
#intro {
  font-size: 5rem;
  margin: 0;
  font-weight: 300;
}
#my-links {
  margin-top: 30px;
}
#my-links a {
  padding: 0 30px;
}
.contact {
  padding: 60px;
}
.get-in-touch {
  display: inline-block;
  color: #03dac6;
  border: 1px solid #03dac6;
  border-radius: 5px;
  text-align: center;
  outline: none;
  background: #121212;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 1.25rem 1.75rem;
}
.get-in-touch a {
  color: #03dac6;
  text-decoration: none;
}
.get-in-touch:hover {
  transform: scale(1.1);
  background: rgba(100, 255, 218, 0.1);
}
#down-arrow {
  margin-top: 150px;
}
.resume-download {
  display: inline-block;
  color: #03dac6;
  border: 1px solid #03dac6;
  border-radius: 5px;
  text-align: center;
  outline: none;
  background: #121212;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0.75rem 1rem;
}
.resume-download:hover {
  transform: scale(1.1);
  background: rgba(100, 255, 218, 0.1);
}
#skills div {
  display: flex;
  justify-content: center;
}
#skills ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
#skills ul li {
  list-style: none;
  flex: 0 0 25%;
  display: flex;
  align-items: center;
}
#skills img {
  padding: 10px;
}
#experience ul {
  list-style: none;
  text-align: left;
}
#experience h3 {
  padding-left: 40px;
  text-align: left;
}
#experiences li {
  margin-bottom: 30px;
}
#experiences li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: #03dac6;
  font-size: x-small;
}
#experience-container {
  display: flex;
  justify-content: center;
  min-height: 300px;
}
#experience button {
  width: 200px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  border: none;
  border-left: 2px solid rgba(100, 255, 218, 0.3);
  outline: none;
  background: #121212;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 20px;
  transition: border-left 1s ease;
}
#experience button:hover {
  background: rgba(100, 255, 218, 0.1);
}
#contribution {
  width: 50%;
}
#contact p {
  white-space: break-spaces;
}
footer {
  width: 100%;
  background-color: #1f1b24;
  padding: 20px;
}
#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
article {
  max-width: 60%;
  background-color: #1f1b24;
  box-shadow: 6px 5px 15px rgba(3, 218, 198, 0.2);
  margin-bottom: 30px;
}
.card-content {
  display: flex;
}
.card-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #03dac6;
}
.card-action a,
.card-action button {
  margin: 10px 10px 10px 30px;
}
.card-action button {
  padding: 8px;
  width: 100px;
}
.company-indicator {
  border-left: 2px solid #03dac6 !important;
}
button {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.button-disabled {
  cursor: not-allowed !important;
}
@media screen and (max-width: 1024px) {
  .navlinks {
    width: 50%;
  }
  #sub-intro {
    font-size: 3.5vh;
  }
  #main-intro {
    font-size: 4vh;
    padding: 10px;
  }
  #intro {
    font-size: 15vh;
  }
  #skills ul li {
    flex: 0 0 33%;
  }
}
@media screen and (max-width: 800px) {
  body,
  html {
    overflow-x: hidden;
  }
  .navlinks {
    position: absolute;
    right: 0px;
    height: 50vh;
    top: 7vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(256, 256, 256, 0.95);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    padding: 0;
  }
  #navbar a {
    color: #121212;
  }
  #navbar .burger {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
  }
  #about {
    padding: 100px 0 50px 0;
  }
  #sub-intro {
    font-size: 2.5vh;
  }
  #main-intro {
    font-size: 3vh;
    padding: 10px;
  }
  #intro {
    font-size: 12vh;
  }
  #skills ul li {
    flex: 0 0 50%;
  }

  #experience-container {
    display: flex;
    flex-direction: column;
  }
  #companies {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0;
  }
  #companies li {
    flex-grow: 1;
    flex-basis: 0;
  }
  #experience button {
    width: auto;
    padding: 8px !important;
    font-size: 14px;
    line-height: 1;
    padding: 0px;
    border: none;
    border-bottom: 2px solid rgba(100, 255, 218, 0.3);
    transition: border-bottom 1s ease;
  }
  .company-indicator {
    border-left: none !important;
    border-bottom: 2px solid #03dac6 !important;
  }
  #contribution {
    width: 100%;
  }
  #experiences ul {
    display: flex;
    flex-direction: column !important;
  }
  article {
    max-width: 80%;
  }
  .card-content {
    display: flex;
    flex-direction: column;
  }
  .card-content img {
    width: 100%;
  }
  #contact p {
    white-space: normal;
    padding: 20px;
    text-align: justify;
  }
}
.nav-active {
  transform: translateX(0%);
}
.pre-animation {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
