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

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  background-color: #fff;
  color: #000;
  font-family: "Crimson Pro", serif;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}
@media (max-width: 768px) {
  body {
    align-items: start;
  }
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  text-align: left;
}

header {
  width: fit-content;
  margin-left: auto;
  margin-bottom: clamp(2rem, 10dvw, 6rem);
  text-align: right;
}
header img.logo-image {
  display: block;
  max-height: 6rem;
  width: auto;
  max-width: fit-content;
  margin: 0 0 2rem auto;
}
header .tagline {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  header .tagline {
    font-size: 1rem;
  }
}

.about {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .about {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.about p {
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .about p {
    margin-bottom: 1rem;
  }
}

footer {
  padding-top: 6rem;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  footer {
    padding-top: 4rem;
  }
}
@media (max-width: 768px) {
  footer {
    padding-top: 1.5rem;
  }
}
footer .contact-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 500;
}
@media (max-width: 768px) {
  footer .contact-info {
    gap: 0.5rem;
  }
}
footer a {
  color: #585858;
  text-decoration: none;
}
footer p {
  color: #585858;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  footer p {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
