@import url("https://fonts.googleapis.com/css2?family=League+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap");
body {
  background-color: black;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5% 2.4%;
  z-index: 999;
}

h2, h3 {
  text-transform: uppercase;
}

header .logo {
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  font-family: "League Gothic", sans-serif;
}

.desktop {
  display: block;
  font-family: "League Gothic", sans-serif;
}
.desktop ul {
  display: flex;
}
.desktop ul li a {
  text-decoration: none;
}
.desktop ul > * + * {
  margin-left: 3em;
}
.desktop .nav {
  color: white;
  font-size: 1.8rem;
}

.project {
  margin-top: 10%;
  padding: 0% 2%;
  text-align: center;
}
.project .proj h1 {
  font-family: "League Gothic", sans-serif;
  text-align: center;
  font-size: 220px;
  text-transform: uppercase;
  color: white;
  margin: 0% 0%;
}
.project img {
  width: 100%;
  padding: 2% 0%;
}

.m-scroll {
  display: flex;
  position: relative;
  width: 100%;
  height: 28vh;
  margin: auto;
  overflow: hidden;
  z-index: 1;
}
.m-scroll__title {
  display: flex;
  position: absolute;
  top: 0;
  left: -100%;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transform: scale(2);
  transition: all 10s ease;
}
.m-scroll__title > div {
  display: flex;
  animation: scrollText 100s infinite linear;
}
.m-scroll__title h1 {
  font-family: "League Gothic", sans-serif;
  letter-spacing: 1px;
  font-size: 64px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
}

/*div:hover {
  animation-play-state: paused;
}*/
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-80%);
  }
}
.flex {
  display: flex;
  padding: 0% 2%;
}
.flex .left-flex {
  flex-basis: 50%;
}
.flex .left-flex a {
  font-family: "League Gothic", sans-serif;
  font-size: 84px;
  color: #FF7A00;
  text-decoration: none;
}
.flex .right-flex {
  flex-basis: 50%;
  text-align: right;
}
.flex .right-flex a {
  font-family: "League Gothic", sans-serif;
  font-size: 84px;
  color: #FF7A00;
  text-decoration: none;
}

.con {
  width: 100%;
  color: white;
  font-family: "Source Code Pro", monospace;
  text-align: center;
  margin: 6% 0%;
}
.con img {
  width: 24%;
  margin: -3% 0%;
}
.con h2 {
  font-size: 16px;
}
.con a {
  font-family: "League Gothic", sans-serif;
  font-size: 140px;
  color: #FAFF00;
  text-decoration: none;
}
.con .social {
  margin: 4% 0%;
}
.con .social a {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
  padding: 0% 2%;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .con a {
    font-family: "League Gothic", sans-serif;
    font-size: 110px;
    color: #FAFF00;
  }
  .m-scroll h1 {
    font-size: 64px;
  }
}
@media (max-width: 800px) {
  header .logo {
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    font-family: "League Gothic", sans-serif;
  }
  .desktop {
    display: block;
    font-family: "League Gothic", sans-serif;
  }
  .desktop ul {
    display: flex;
  }
  .desktop ul > * + * {
    margin-left: 2em;
  }
  .desktop .nav {
    color: white;
    font-size: 1.4rem;
  }
  .project .proj h1 {
    font-size: 120px;
  }
  .m-scroll {
    width: 100%;
    height: 26vh;
  }
  .m-scroll h1 {
    font-size: 48px;
  }
  .flex .left-flex a {
    font-size: 64px;
  }
  .flex .right-flex a {
    font-size: 64px;
  }
  .con h2 {
    font-size: 14px;
  }
  .con a {
    font-size: 80px;
  }
  .con .social a {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .project .proj h1 {
    font-size: 180px;
  }
  .project .proj p {
    font-size: 14px;
  }
  header .logo {
    font-size: 1.2rem;
  }
  .desktop ul {
    display: flex;
  }
  .desktop ul > * + * {
    margin-left: 2em;
  }
  .desktop .nav {
    font-size: 1.2rem;
  }
  .project {
    margin: 20% 0%;
  }
  .project .proj h1 {
    font-size: 84px;
  }
  .m-scroll {
    width: 100%;
    height: 22vh;
    margin-top: -16%;
  }
  .m-scroll h1 {
    font-size: 36px;
  }
  .flex .left-flex a {
    font-size: 36px;
  }
  .flex .right-flex a {
    font-size: 36px;
  }
  .con h2 {
    font-size: 14px;
  }
  .con a {
    font-size: 42px;
  }
  .con .social a {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .project {
    margin: 30% 0%;
  }
  .project .proj h1 {
    font-size: 64px;
  }
  .project .proj p {
    font-size: 10px;
  }
  .m-scroll {
    margin-top: -36%;
  }
}
@media (max-width: 320px) {
  .project .proj h1 {
    font-size: 48px;
  }
  .project .proj p {
    font-size: 10px;
  }
  .m-scroll {
    width: 100%;
    height: 16vh;
    margin-top: -24%;
  }
  .m-scroll h1 {
    font-size: 32px;
  }
  .con h2 {
    font-size: 14px;
  }
  .con a {
    font-size: 36px;
  }
  .con .social a {
    font-size: 14px;
  }
}/*# sourceMappingURL=Social.css.map */