* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1e2122;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0e0e0e;
  color: white;
  padding: 20px 40px;
}

.logo {
  font-size: 24px;
}

.nav-buttons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: space-between;

  width: 40%;
  max-width: 400px;
  min-width: 240px;
}

.nav-buttons a,
.nav-buttons button {
  background: none;
  border: none;
  padding: 0;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  text-decoration: none;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.nav-buttons a:hover,
.nav-buttons button:hover {
  text-shadow: 0 0 8px white, 0 0 16px white;
}

.content {
  display: flex;
  padding: 60px 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(199, 199, 199);
}

.content-box {
  background-color: #6b6b6b;
  color: rgb(199, 199, 199);
  margin-top: 40px;
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.content-box h2 {
  margin-bottom: 16px;
}

.content-box p {
  font-size: 18px;
  line-height: 1.6;
}

.content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.content p {
  font-size: 18px;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 20px;
  }

  .logo {
    text-align: center;
  }

  .nav-buttons {
    position: static;
    transform: none;

    width: 100%;
    max-width: 300px;
    min-width: 0;

    display: flex;
    justify-content: space-between;
  }
}