* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  background-color: #181719;
  width: 100vw;
  overflow-x: hidden;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 8vh;
  margin: 5.6vh 5vw;
}

.logo {
  text-transform: uppercase;
  border: 1px solid white;
  padding: 8px;
  font-family: "Crimson Pro", sans-serif;
  font-size: 14px;
  font-weight: 200;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 40%;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 5px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a:focus::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.burger {
  display: none;
  cursor: pointer;
}

.main-container {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5.6vh 5vw;
}

.img-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}

.img-right #room {
  width: 83.2%;
  min-width: 351px;
  max-width: 800px;
  height: auto;
}

.img-right .profile-box {
  width: clamp(300px, 26.7vw, 410px);
  height: clamp(138px, 26.1vh, 190px);
  background-color: #181719;
  position: absolute;
  bottom: -110px;
  right: 32px;
  -webkit-box-shadow: 0px 4px 4px 0px #00000040;
          box-shadow: 0px 4px 4px 0px #00000040;
}

.img-right .profile-box .profile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.img-right .profile-box #designer {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 31px;
  margin-top: 18px;
  margin-right: 19px;
}

.img-right .profile-box .profile-header-text {
  margin-top: 23px;
}

.img-right .profile-box p:first-child {
  font-size: clamp(12px, 0.9vw, 14px);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.img-right .profile-box p:nth-child(2) {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 0.78vw, 12px);
  color: #828282;
  margin-top: 8px;
}

.img-right .profile-box #designed {
  margin-top: 25px;
  margin-left: 31px;
  width: 287px;
  font-family: "Lora", sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
}

.text-left {
  width: 500px;
}

.text-left #heading {
  font-family: "Lora", sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 3.125vw, 48px);
}

.text-left #content {
  margin-top: 40px;
  margin-bottom: 48px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.56vw, 24px);
  font-weight: 400;
}

.text-left #read {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

.attribution {
  text-align: center;
  color: #b9bdcf;
  font-size: 0.8rem;
  margin-top: 200px;
  margin-bottom: 30px;
}

.attribution a {
  text-decoration: none;
  color: #a9a9a9;
}

@media (max-width: 950px) {
  .wrapper {
    overflow-x: initial;
  }
  .main-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 50px;
  }
  .text-left {
    width: 300px;
  }
  .img-right {
    max-width: 500px;
  }
  .nav-links {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .wrapper {
    overflow-x: hidden;
  }
  .text-left {
    text-align: left;
  }
  .text-left #content {
    width: 250px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .text-left #read {
    margin-bottom: 37px;
  }
  .main-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .img-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .img-right .profile-box {
    right: initial;
    left: 8vw;
    height: 138px;
  }
  .img-right .profile-box #designed {
    margin-top: 10px;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 100vh;
    top: 0vh;
    background-color: #181719;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    z-index: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
  }
  .nav-links li {
    margin-top: 10vh;
  }
  .burger {
    display: block;
    z-index: 1;
  }
  .nav-active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .toggle .line1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    -webkit-transform: rotate(45deg) translate(-5px, -6px);
            transform: rotate(45deg) translate(-5px, -6px);
  }
}
/*# sourceMappingURL=style.css.map */