body {
  font-family: 'Comfortaa', sans-serif;
  margin: 0;
  text-align: center;
  padding-bottom: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  position: relative;
}

header h1 {
  margin: 0;
}

header h1 a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 800;
  text-decoration: none;
  background: #007ACC;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #007ACC;
  text-shadow:
    1px 1px 1px rgba(0, 0, 0, 0.25),
    2px 2px 2px rgba(0, 0, 0, 0.2),
    3px 3px 3px rgba(0, 0, 0, 0.15);
}

header h1 a:hover {
  text-decoration: underline;
  text-shadow:
    1px 1px 1px rgba(0, 0, 0, 0.3),
    2px 2px 2px rgba(0, 0, 0, 0.25),
    4px 4px 6px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

main {
  padding: 10px;
}

footer {
  background-color: #007ACC;
  color: #fff;
  width: 100%;
  padding: 8px 0;
  position: fixed;
  bottom: 0;
  left: 0;
}

#footer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

#footer-link:hover {
  text-decoration: underline;
  color: #f1de12;
}

#contact ul {
  list-style: none;
  padding: 0;
}

#contact ul li {
  margin: 10px 0;
}

#contact a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}

#contact a:hover {
  color: #007ACC;
}

.highlight {
  color: #747474;
  font-weight: bold;
}

@media (max-width: 768px) {
  header {
    padding: 10px;
    justify-content: center;
  }

  header h1 {
    font-size: 40px;
  }

  header h1 a {
    font-size: 40px;
    -webkit-text-stroke: 1px #004a87;
    text-shadow: none;
    white-space: nowrap;
  }

  footer {
    padding: 4px 0;
  }
}
