/* General Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #fffaf5;
  color: #333;
}

header {
  background: #ffcbcb;
  padding: 30px;
  border-bottom: 4px solid #ff9e9e;
}

h1 {
  font-size: 2.5em;
  margin: 0;
}

.subtitle {
  font-size: 1.2em;
  color: #444;
  margin-top: 10px;
}

div.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

nav a:hover {
  background: #ffb6c1;
  color: white;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 15px;
  background: #ff9e9e;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 15px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff6b6b;
}

footer {
  background: #ffe6e6;
  padding: 15px;
  margin-top: 40px;
}