body {
  font-family: 'Inter', sans-serif;
  background-color: #f7f7f7;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

header nav a:hover {
  color: #666;
}

main {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 80px;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

p {
  font-size: 18px;
  color: #666;
  text-align: center;
}

footer {
  background-color: #f7f7f7;
  padding: 20px;
  text-align: center;
}

footer img {
  width: 100px;
  height: 100px;
  margin: 10px;
}

footer p {
  font-size: 18px;
  color: #666;
}

