@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;900&display=swap");

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

* {
  box-sizing: border-box;
}

section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem 7.5rem 2rem;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

p {
  font-size: 1.5rem;
  font-weight: 400;
}

/* Navigation styles */
.main-nav {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  gap: 1rem;
}

.main-nav a {
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.main-nav a:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1.25rem;
  }
  
  .main-nav {
    display: none; /* Hide menu on mobile */
  }
}
