* {
  box-sizing: border-box;
}

:root {
  --layer-flat: 1;
  --overlay-layer: var(--layer-flat);
  --overlay-color: #c8826f;
  --overlay-color--end: rgb(200 130 111 / 26%);
  --overlay-direction: to top;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  color: #ffffff;
  background: #ede1d8;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 20px 44px;
  position: relative;
  background-image: url("/assets/hero-bg.png");
  background-size: cover;
  background-position: center top;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: var(--overlay-layer);
  pointer-events: none;
  background: linear-gradient(
    var(--overlay-direction),
    var(--overlay-color) 0%,
    rgba(200, 130, 111, 0.68) 56%,
    var(--overlay-color--end) 80%,
    var(--overlay-color--end) 100%
  );
}

.card {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  text-align: center;
  transform: translateY(4px);
}

.logo {
  width: 172px;
  max-width: 58%;
  margin: 0 auto 100px;
  display: block;
}

.content p {
  margin: 0 0 12px;
  line-height: 1.42;
  font-size: 14px;
  color: #ffffff;
}

.content h2 {
  margin: 34px 0 12px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0;
  color: #ffffff;
}

a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.actions {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.btn {
  text-decoration: none;
  text-align: center;
  width: min(100%, 240px);
  padding: 15px 14px;
  background: #ede1d8;
  color: #b49391;
  border: 0;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 0.96rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  background: #e6d6ce;
  color: #aa8683;
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 14px 34px;
  }

  .logo {
    margin-bottom: 30px;
  }

  .content p {
    font-size: 0.93rem;
  }

  .actions {
    margin-top: 34px;
  }

  .btn {
    width: min(100%, 300px);
  }
}
