/* Genel Stil */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  color: #f0f0f0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #111;
  border-bottom: 2px solid #333;
}

.navbar .logo {
  height: 50px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #f0f0f0;
}

.navbar a:hover {
  color: #e63946;
}

/* Sayfa İçerik Stili */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 60px);
}

.page {
  display: none;
  text-align: center;
}

.page.active {
  display: block;
}

h1 {
  font-size: 2rem;
  color: #ee2c2c;
}

p {
  font-size: 1rem;
  color: #d3d3d3;
}
