body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f2f2f2;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 500px;
  padding: 30px 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.message {
  font-size: 4.5vw;
  margin-bottom: 15px;
}

.contact {
  font-size: 4vw;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.logo {
  max-width: 100%;
  width: 1000px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}



/* Медиазапрос для больших экранов */
@media (min-width: 600px) {
  h1 {
    font-size: 32px;
  }

  .message {
    font-size: 20px;
  }

  .contact {
    font-size: 18px;
  }
}
