* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: #f4efe5;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  transform: translateY(-2vh);
}

.logo {
  display: block;
  width: min(200px, 42vw);
  height: auto;
  margin-bottom: 34px;
}

.status {
  margin: 0 0 45px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

a {
  color: #111;
  text-decoration: none;
}

.contact > a:first-child {
  font-size: 14px;
}

.contact > a:first-child:hover {
  text-decoration: underline;
}

.instagram {
  width: 22px;
  height: 22px;
  display: block;
}

.instagram svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram .dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 600px) {
  .logo {
    width: min(180px, 48vw);
  }
}
