body {
  font-family: sans-serif;
  margin: 0;
  min-height: 100vh;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.navbar {
  background-color: rgba(49, 50, 54, 0.05);
  border-radius: 2px;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 24px;
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: rgba(30, 30, 40, 0.05);
  border-radius: 18px;
  padding: 48px 32px;
  margin: 48px auto 0 auto;
  max-width: 700px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.main-content h1 {
  color: #fff;
  font-size: 3em;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  margin-top: 0;
  margin-bottom: 16px;
}

.main-content h2 {
  color: white;
  font-size: 1.5em;
  margin-bottom: 18px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.main-content p {
  margin: 0;
}

.main-description {
  max-width: 600px;
  color: #f3f3f3;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

