* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  color: #e8f9d4;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.contact {
  font-size: 1.2em;
  color: #2c3e50;
}

.contact a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  color: #1d6fa5;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .logo {
    max-width: 280px;
  }

  .contact {
    font-size: 1em;
  }
}
