@import url("https://fonts.cdnfonts.com/css/circular-std");

* {
  margin: 0;
  padding: 0;
  user-select: none;
}

.disable-scroll {
  height: 100%;
  overflow: hidden;
}

.home {
  /* background: url("https://lh3.googleusercontent.com/pw/AP1GczOufcCXTOu_oamY3AqXbBAXCvLF53_ahw5UpZI5GDASH2HFuGnHwkyA3epTG9YQm5zMugDnTuXQPzAG643M-DHWYOFHpfKKL6LcGg6xipe-4h7zxBI=w2400"); */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bg-video {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: auto;
  transform: rotate(90deg);
  z-index: -5;
}

@font-face {
  font-family: "standard-book";
  src: url(standard-font/webfonts/._standard-book-webfont.woff);
}

.logo,
.nav-link {
  color: inherit;
  text-decoration: none;
  height: min-content;
}

nav {
  font-size: 22px;
  max-height: 30px;
}

.top {
  background: black;
  color: azure;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: "Circular Std", sans-serif;
}

.topright {
  display: none;
  gap: 40px;
  font-family: "Circular Std", sans-serif;
  list-style: none;
}

.marquee {
  overflow: hidden;
  font-family: "Circular Std", sans-serif;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  text-decoration: none;
  color: inherit;
}

.marquee h1 {
  font-size: 5em;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee h1 a {
  text-decoration: none;
  color: inherit;
}

.about,
.works {
  background-color: #000;
  font-family: "Circular Std", sans-serif;
  color: azure;
}

.works__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-me {
  font-size: 15px;
}

.about-me__section {
  display: flex;
  max-width: 980px;
}

.about-me__section section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 40px;
}

.about-me__section section:nth-child(2) {
  text-align: right;
  align-items: flex-end;
}

.image__about-container {
  width: 400px;
  height: 400px;
  overflow: hidden;
}

.image__about {
  max-width: 80%;
  scale: 1.3;
}

.works__main {
  padding: 0 20px;
}

.works__section {
  padding: 20px;
}

.contact__links {
  color: inherit;
  text-decoration: none;
}

.contact__parallax-scroll__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.contact__parallax-scroll {
  display: flex;
  width: calc(100vw - 60px);
  height: 400px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.contact__parallax-scroll span {
  display: block;
  width: 100%;
  height: auto;
  background: url("https://lh3.googleusercontent.com/pw/AP1GczM_8OEkxRsxo89VtM-OxrpRoPWTdKFZS3XmFz_RsVCZgaGHL_bG_LgCAJRAleXHARBMhDSb1PIN5xBxAe2d2zZ_Jx9xFAt5ajQmbP5uUeix_zahTH0=w2400");
  background-position: 50%;
  background-attachment: fixed;
  background-size: cover;
}

.images-container li {
  display: flex;
  position: relative;
  cursor: pointer;
  background-color: transparent;
}

.images-container li:hover > span {
  display: flex;
}

.images-container li span {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  color: white;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.show {
  display: flex !important;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-left: -20px;
  z-index: 3000;
}

.mob_close {
  display: none;
  position: absolute;
  top: 2.5px;
  right: 17.5px;
}

@media (width < 1000px) {
  .bg-video {
    top: -50vh;
    height: 250vh;
    width: auto;
  }

  .about-me__section {
    flex-direction: column;
  }
}

@media (width < 630px) {
  .topright {
    display: none;
  }

  .mob_menu {
    display: flex;
  }

  .mob_close {
    display: flex;
  }
}

@media (width > 630px) {
  .mob_menu {
    display: none;
  }

  .mob_close {
    display: none;
  }

  .topright {
    display: flex;
  }
}
