:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 26px;
  background: #ffffff;
}

.placeholder {
  display: flex;
  min-height: calc(100vh - 52px);
  min-height: calc(100dvh - 52px);
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  background: #de0646;
  border-radius: 40px;
}

.placeholder__logo {
  display: block;
  width: 353px;
  max-width: 100%;
  height: auto;
}

.placeholder__info {
  width: 100%;
}

h1,
p {
  margin: 0;
}

h1 {
  width: min(752px, 100%);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mobile-break {
  display: none;
}

.placeholder__contacts {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  font-style: normal;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 180ms ease, text-decoration-color 180ms ease;
}

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

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    text-decoration-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  a {
    transition: none;
  }
}

@media (max-width: 767px) {
  .mobile-break {
    display: initial;
  }

  body {
    padding: 16px;
  }

  .placeholder {
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
    padding: 28px;
    border-radius: 24px;
  }

  .placeholder__logo {
    width: 212px;
  }

  h1 {
    font-size: 36px;
    line-height: normal;
  }

  .placeholder__contacts {
    margin-top: 24px;
    gap: 20px;
    font-size: 18px;
  }
}

@media (max-width: 359px) {
  body {
    padding: 12px;
  }

  .placeholder {
    min-height: calc(100vh - 24px);
    min-height: calc(100dvh - 24px);
    padding: 24px;
    border-radius: 20px;
  }

  .placeholder__logo {
    width: 190px;
  }

  h1 {
    font-size: 32px;
  }

  .placeholder__contacts {
    font-size: 16px;
  }
}

@media (max-height: 620px) {
  .placeholder {
    gap: 80px;
  }
}
