body {
  margin: 0;
  font-family: Arial, sans-serif;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #27A3F5;
  padding: 15px 50px;
}
.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

nav a:hover {
  color: orange;
}

.hero {
  background: linear-gradient(to right, #0066ff, #00ccff);
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 48px;
}

.hero p {
  font-size: 20px;
}
.hero button {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  background: orange;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}
main {
  padding: 50px;
  text-align: center;
}
footer {
  background: #704F4F;
  color: white;
  text-align: center;
  padding: 20px;
}