@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap");
/* ========== VARIABLES ========== */
:root {
  --main-color: #171717;
  --text-color: white;
  --main-font: "Montserrat";
}

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

/* ========== STYLE ========== */
html {
  font-size: 16px;
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

body {
  background: var(--main-color);
  color: var(--text-color);
  font-family: var(--main-font), "sans-serif";
  overflow: hidden;
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bg-container {
  z-index: -3;
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100vw;
  background: url("../img/background/background_1.jpg") center center no-repeat;
  background-size: cover;
  opacity: 0.2;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.bg-container #bg-img {
  z-index: -3;
  content: '';
  position: absolute;
  height: 100%;
  opacity: 0.2;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.intro-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro-section .profile-picture {
  height: 256px;
  border-radius: 128px;
  border: white solid;
  border-width: 4px;
  margin: 64px auto;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.intro-section .profile-picture:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.intro-section .content-container {
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  width: 30rem;
  height: 24rem;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.intro-section .content-container .content-face {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}

.intro-section .content-container .content-front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro-section .content-container .content-front h1 {
  text-align: center;
  font-size: 4rem;
  padding: 0;
}

.intro-section .content-container .content-front h2 {
  text-align: center;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  /*transform: translateY(-50%);*/
}

.intro-section .content-container .content-front .social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 64px 0;
}

.intro-section .content-container .content-front .social-container img {
  height: 64px;
  margin: 0 32px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.intro-section .content-container .content-front .social-container img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.intro-section .content-container .content-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.intro-section .content-container .content-back p {
  text-align: center;
  font-size: 1rem;
  text-align: center;
  width: 28em;
  margin-top: 32px;
  letter-spacing: 1px;
  line-height: 1.5rem;
}

.flip {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/* Animation */
.anim-typewriter {
  -webkit-animation: typewriter 2s steps(40) 1s 1 normal both;
          animation: typewriter 2s steps(40) 1s 1 normal both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 28em;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 28em;
  }
}
/*# sourceMappingURL=style.css.map */