:root {
  --background: #353b40;
  --text: #a8a8a8;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--text);
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.placeholder {
  display: grid;
  min-height: 100svh;
  padding: clamp(32px, 6vw, 72px) 24px;
  place-items: center;
}

.content {
  display: flex;
  width: min(100%, 760px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-2vh);
}

.logo {
  display: block;
  width: min(100%, 740px);
  height: auto;
}

.contact {
  display: flex;
  margin-top: clamp(46px, 6.5vh, 78px);
  flex-direction: column;
  gap: 10px;
  font-size: clamp(18px, 2.1vw, 25px);
  font-style: normal;
  line-height: 1.35;
}

.contact a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #ffffff;
}

.contact a:focus-visible {
  border-radius: 3px;
  outline: 2px solid #ffffff;
  outline-offset: 5px;
}

@media (max-width: 600px) {
  .placeholder {
    padding-inline: 22px;
  }

  .content {
    width: 100%;
    transform: translateY(-1vh);
  }

  .logo {
    width: min(100%, 520px);
  }

  .contact {
    margin-top: 42px;
    gap: 8px;
    font-size: 18px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .placeholder {
    padding-block: 24px;
  }

  .content {
    transform: none;
  }

  .logo {
    width: min(62vw, 560px);
  }

  .contact {
    margin-top: 24px;
    font-size: 17px;
  }
}
