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

body {
  background-color: black;
  color: white;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
}

h2 {
  font-size: 20px;
}

/* --------------- Container --------------- */
.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* --------------- Boxes --------------- */
.boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.boxes .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 20px;
  border-radius: 6px;
  -webkit-transition: 0.3s background-color ease;
  transition: 0.3s background-color ease;
  background-color: #0f0f0f;
  border: 1px solid rgb(51, 51, 51);
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease forwards;
          animation: fadeIn 0.5s ease forwards;
}
.boxes .box.full-box {
  grid-column: span 2;
  padding: 0;
}
.boxes .box.full-box.socials-box, .boxes .box.full-box.contact-box {
  padding: 20px;
}
.boxes .box:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.boxes .box:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.boxes .box:nth-child(3) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.boxes .box:nth-child(4) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.boxes .box:nth-child(5) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.boxes .box:nth-child(6) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.boxes .box:nth-child(7) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

/* --------------- Profile --------------- */
.profile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.profile img {
  width: 150px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: 10;
  border: 2px solid white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.profile h1 {
  z-index: 10;
}
.profile .bg-blurred {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/ZR\ Transparent.png");
  background-size: cover;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  z-index: 0;
}

/* --------------- Socials --------------- */
.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  margin-top: 10px;
}
.socials a {
  display: block;
  height: auto;
}
.socials img {
  height: 20px;
  width: 20px;
}

/* --------------- CTA --------------- */
.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: inherit;
  height: 40px;
}
.cta img {
  width: 30px;
}
.cta img.bmc {
  width: auto;
  height: 40px;
}

.filter {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(123%) hue-rotate(333deg) brightness(104%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(123%) hue-rotate(333deg) brightness(104%) contrast(102%);
}

/* --------------- Animations --------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ---------------- Footer ----------------- */
footer {
  padding: 10px 20px;
}
footer p {
  font-size: 14px;
  text-align: center;
}

/* ---------------- Media Queries ----------------- */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
  .boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .boxes .box h2 {
    font-size: 18px;
  }
  .boxes .box.full-box {
    grid-column: span 1;
  }
  .profile img {
    width: 100px;
  }
  .profile h1 {
    font-size: 20px;
  }
}
@media (max-width: 320px) {
  .profile img {
    width: 80px;
  }
  .profile h1 {
    font-size: 20px;
  }
}/*# sourceMappingURL=styles.css.map */