:root {
  --color-bg: #440101;
  --color-text: #ddd0bf;
  --color-text-hover: #f5f2ed;
  --content-gap: clamp(1.5rem, 0.5357142857rem + 0.0241071429 * 100vw, 2.85rem);
  --logo: clamp(17rem, 6.0714285714rem + 0.2732142857 * 100vw, 32.3rem);
  --logo-padding-bottom: clamp(1.1rem, 0.3928571429rem + 0.0176785714 * 100vw, 2.09rem);
  --contact: clamp(1rem, 0.3571428571rem + 0.0160714286 * 100vw, 1.9rem);
  --contact-gap: clamp(0.5rem, 0.1785714286rem + 0.0080357143 * 100vw, 0.95rem);
  --socials: clamp(1.4rem, 0.5rem + 0.0225 * 100vw, 2.66rem);
  --socials-gap: clamp(0.6rem, 0.2142857143rem + 0.0096428571 * 100vw, 1.14rem);
}

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

body {
  min-height: 100vh;
  padding: 4rem;
  background-color: var(--color-bg);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--content-gap);
  margin-top: 2rem;
  transition: margin-top 0.2s ease;
}

.logo {
  width: var(--logo);
  fill: var(--color-text);
  margin-bottom: var(--logo-padding-bottom);
}

.contact {
  font-size: var(--contact);
}
.contact a {
  color: currentColor;
  text-decoration: none;
}
.contact a:focus, .contact a:active {
  color: var(--color-text-hover);
}
.contact a:first-of-type {
  display: inline-block;
  margin-bottom: var(--contact-gap);
}
@media (hover: hover) and (pointer: fine) {
  .contact a:hover {
    color: var(--color-text-hover);
  }
}

.socials {
  display: flex;
  gap: var(--socials-gap);
}
.socials a .icon {
  width: var(--socials);
  fill: var(--color-text);
  transition: fill 0.1s, transform 0.1s;
}
.socials a:focus .icon, .socials a:active .icon {
  fill: var(--color-text-hover);
}
@media (hover: hover) and (pointer: fine) {
  .socials a:hover .icon {
    fill: var(--color-text-hover);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-height: 600px) {
  .content {
    margin-top: 0rem;
  }
}/*# sourceMappingURL=styles.css.map */