* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Oswald', sans-serif;
  background: url('/artworks/20230606_212729.jpg') no-repeat center/cover;
  background-attachment: fixed;
  color: white;
  overflow-x: hidden;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar */
.nav-bar {
  display: flex;
  align-items: center;
}

.nav-bar ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

.nav-bar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-bar a:hover {
  background: white;
  color: red;
  border-radius: 5px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-bar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .nav-bar ul {
    flex-direction: column;
  }

  .nav-bar.active {
    display: flex;
  }
}

/* Centered Content */
.centered-content {
  max-width: 80%; /* Give it more flexibility */
  width: 700px; /* Set a fixed width so it doesn’t shrink too much */
  margin: 50px auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  font-size: 18px;
  line-height: 1.5; /* Better readability */
  border-radius: 10px;
}

h1 {
  color: red;
}

h2 {
  color: white;
}

/* Button Styling */
#explore-btn {
  background: white;
  color: black;
  padding: 10px 15px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#explore-btn:hover {
  background: red;
  color: white;
}
