body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #14375f;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center; /* Центрирует картинку */
  font-size: 1rem; /* базовая единица */
}

.logo img {
  max-width: 60vw;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}
.mail {
  align-self: flex-start; /* Привязка к левому краю логотипа */
  margin-top: 2px;
}
.mail p {
  color: #da8e4b;
  font-size: clamp(14px, 2vw, 20px);
  font-family: 'Open Sans', sans-serif;
  margin-top: 2px;
  margin-left: 0px;
}

.mail a {
  color: inherit;
  text-decoration: none;
}

.mail a:hover {
  text-decoration: underline;
}
