/* ABOUT */
.about-page {
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  height: 0;
}

.about {
  display: flex;
}

.about-left {
  position: relative;
  width: 45%;
  padding: 14rem 0rem 10rem 15rem;
  height: 100vh;
}

.about-right {
  position: relative;
  width: 55%;
  height: 100vh;
  padding: 13rem 9rem 10rem 1rem;
}

.about-picture {
  display: flex;
  justify-content: center;
}

.page-heading {
  font-size: 48px;
}

.about-text {
  margin-top: 16px;
  font-size: 1.2rem;
}

.about-resume {
  margin-top: 16px;
  font-size: 20px;
}

/* tablet landscape */
@media (max-width: 1199px) {
  .about-left {
    padding: 14rem 2rem 10rem 12rem;
  }
  .about-right {
    padding: 15rem 9rem 9rem 2rem;
  }
  #about_img {
    width: 340px;
    height: 340px;
  }
}
/* tablet portrait */
@media (max-width: 849px) {
  .about {
    display: flex;
    flex-direction: column-reverse;
  }
  #about_img {
    width: 260px;
    height: 260px;
  }
  .about-right {
    width: 100%;
    padding: 12rem 0rem 0rem 0rem;
    height: auto;
  }
  .about-left {
    width: -webkit-calc(100% - 90px);
    padding: 30px 45px 20px 45px;
  }
  .left-text-wrapper {
    display: flex;
    justify-content: center;
  }
  .left-text {
    width: 600px;
  }
  .page-heading {
    font-size: 40px;
  }
  .about-text {
    font-size: 17px;
  }
}
/* mobile */
@media (max-width: 549px) {
  #about_img {
    width: 180px;
    height: 180px;
  }
  .about-right {
    padding: 8rem 0rem 0rem 0rem;
  }
  .left-text {
    width: 550px;
  }
  .page-heading {
    font-size: 32px;
  }
  .about-text {
    font-size: 15px;
  }
}
/* CONTACT */
.contact-page {
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  height: 0;
}

.social-menu {
  display: flex;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
}

.social-icon {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.contact-left {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-menu {
  width: 1000px;
}

.contact-left-wrapper {
  position: relative;
  width: 100%;
  padding: 224px 0 160px 0;
  height: 100vh;
}

.social-icon-img {
  width: 8rem;
  height: 8rem;
}

/* tablet landscape */
@media (max-width: 1199px) {
  .contact-menu {
    width: 800px;
  }
}
/* tablet portrait */
@media (max-width: 849px) {
  .contact-menu {
    width: 500px;
  }
  .contact-left-wrapper {
    padding: 200px 0 160px 0;
  }
  .social-icon-img {
    width: 95px;
    height: 95px;
  }
}
/* mobile */
@media (max-width: 549px) {
  .contact-menu {
    width: 264px;
  }
  .contact-left-wrapper {
    padding: 130px 0 0 0;
  }
  .social-icon-img {
    width: 80px;
    height: 80px;
  }
  .social-menu {
    flex-direction: column;
    margin-top: 20px;
  }
  .page-heading {
    font-size: 32px;
  }
}
/* HOME */
.home-page {
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.menu {
  height: 100vh;
  z-index: 1;
  width: 100%;
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.link-wrapper {
  text-align: center;
  font-weight: 500;
  font-size: 50px;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.dxvid-wrapper {
  text-align: center;
  font-family: "Fasthand", cursive;
  font-weight: 500;
  font-size: 2.1rem;
}

/* mobile */
@media (max-width: 549px) {
  .link-wrapper {
    font-size: 35px;
  }
}
/* PROJECTS */
.projects-page {
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  height: 0;
}

.projects {
  display: flex;
}

.project-title {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  align-items: center;
}

.project-title-left {
  font-size: 1.4rem;
}

.project-title-right {
  font-size: 1rem;
}

.projects-right {
  position: relative;
  padding: 14rem 2rem 10rem 9rem;
  height: 100vh;
  width: 55%;
}

.project-image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
}

.projects-left-wrapper {
  position: relative;
  width: 45%;
  padding: 14rem 0rem 10rem 15rem;
  height: 100vh;
}

/* tablet landscape */
@media (max-width: 1199px) {
  .projects {
    width: 100%;
    display: block;
  }
  .projects-right {
    display: none;
  }
  .projects-left-wrapper {
    width: -webkit-calc(100% - 400px);
    padding: 224px 200px 0 200px;
  }
}
/* tablet portrait */
@media (max-width: 849px) {
  .projects-left-wrapper {
    width: -webkit-calc(100% - 340px);
    padding: 200px 170px 0 170px;
  }
  .page-heading {
    font-size: 40px;
  }
  .project-title-left {
    font-size: 24px;
  }
  .project-title-right {
    font-size: 16px;
    width: 160px;
  }
}
/* mobile */
@media (max-width: 549px) {
  .projects-left-wrapper {
    width: -webkit-calc(100% - 150px);
    padding: 130px 75px 0 75px;
  }
  .project-title-left {
    font-size: 20px;
  }
  .project-title-right {
    font-size: 12px;
    width: 90px;
  }
  .page-heading {
    font-size: 32px;
  }
  .project-title {
    padding: 0.3rem 0;
  }
}
html, body {
  font-family: "Jost", sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: auto;
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  display: block;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: -100;
}
.video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

hr {
  height: 0.1rem;
  color: black;
  background-color: black;
  border-width: 0;
  border-radius: 10% 10% 10% 10%;
}

#background {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.container {
  height: 100vh;
  width: 100vw;
}

.nav-wrapper {
  position: fixed;
  z-index: 2;
  top: 100px;
  left: 0;
  right: 0;
  width: 100%;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 0 100px 0 100px;
  align-items: center;
  height: 80px;
  overflow: hidden;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.nav-right {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.logo {
  margin-right: 1.2rem;
  cursor: pointer;
}

.full-name {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.name {
  font-size: 30px;
}

.theme-button {
  size: 3rem;
}

/* tablet portrait */
@media (max-width: 849px) {
  .nav-wrapper {
    top: 80px;
  }
  .name {
    font-size: 23px;
  }
  .sub-name {
    font-size: 13px;
  }
  .nav-bar {
    padding: 0 60px 0 60px;
  }
  #logo_img {
    width: 35px;
    height: 35px;
  }
}
/* mobile */
@media (max-width: 549px) {
  .nav-wrapper {
    top: 50px;
  }
  .nav-bar {
    padding: 0 40px 0 40px;
  }
}/*# sourceMappingURL=styles.css.map */