/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(180deg, #c5e2f8 0%,#85c8ee 100%);
  color: hsl(213, 100%, 23%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}


.logo {
  width: 320px;
  margin-bottom: 30px;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  color: hsl(213, 100%, 23%);
}

.contact-box {
  background: rgba(255, 255, 255, 0.318);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.contact-box h2 {
  color: hsl(213, 100%, 23%);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-box a {
  color: hsl(213, 100%, 23%);
  text-decoration: underline;
  display: inline-block;
  padding: 3px 4px;
  margin: 1px 0;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-box a:hover,
.contact-box a:focus,
.contact-box a:active {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  color: hsl(213, 100%, 18%);
}


footer {
  font-size: 0.8rem;
  color: hsl(213, 100%, 23%);
  margin-top: 10px;
}
