@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Montserrat:wght@400;700&display=swap");
body {
  background-color: #e0e8f3;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

.page-main {
  width: max(350px, 100%);
  transition: 0.5s;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 1ch 0ch;
  box-sizing: border-box;
  user-select: none;
}

h6 {
  text-align: center;
  color: red;
}

.content-card {
  width: 50%;
  margin: 1ch auto;
  border: 1px solid lightgray;
  border-radius: 1em;
  padding: 4ch;
  background-color: white;
  animation: page-load 0.5s;
  animation-fill-mode: forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2ch;
  box-sizing: border-box;
}

@keyframes page-load {
  0% {
    margin: 1ch auto;
  }
  25% {
    margin: 2ch auto;
  }
  50% {
    font-size: 10px;
    width: 100%;
  }
  75% {
    margin: 2.5ch auto;
  }
  100% {
    width: 90%;
  }
}
.profile-image {
  -o-object-fit: cover;
  object-fit: cover;
}

.about {
  box-sizing: border-box;
  padding-bottom: 2ch;
}
.about h2 {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  text-align: center;
  box-sizing: border-box;
}
.about p {
  text-align: justify;
  font-size: 0.8em;
  font-family: "Lora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}

.social {
  margin-top: 5ch;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1ch;
}
.social .contact-item {
  display: flex;
  align-items: center;
  gap: 1ch;
  font-size: 0.7em;
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 576px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 991.5px) {
  .content-card {
    flex-direction: column;
  }
  .profile-image {
    width: 12em;
    height: 12em;
    border-radius: 50%;
  }
}
@media (min-width: 991.5px) {
  .content-card {
    flex-direction: row;
    align-items: stretch;
  }
  .profile-image {
    width: 20em;
    border-radius: 1em;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 20px;
  }
} /*# sourceMappingURL=style.css.map */
