:root {
  --font-primary: "Myriad Pro", "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --text-color: #111111;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background: #141414;
}

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("resources/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  text-align: center;
}

.logo {
  max-width: 65vw;
  height: auto;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.35));
}

.contact {
  font-style: normal;
  font-size: clamp(1.8rem, 2.4vw, 2.1rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}

.social-link {
  margin-top: clamp(6px, 1vw, 10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: underline;
}

.icon {
  width: clamp(22px, 2.5vw, 28px);
  height: clamp(22px, 2.5vw, 28px);
  fill: currentColor;
}

.text-link {
  color: inherit;
  text-decoration: underline;
}

.text-link:hover {
  text-decoration: none;
}

@media (max-width: 640px) {
  .logo {
    max-width: 86vw;
  }
}
