* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("images/club-background.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  font-family: "Gill Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.6;
  overflow-x: hidden;
}

.align {
  text-align: center;
  margin-top: 4rem;
}

/* ------------------------------
   NAVIGATION
--------------------------------*/
h2, p {
	margin: 10px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #BFC7D9;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #0077ff;
}

/* ------------------------------
   CONTENT BOXES (RESPONSIVE)
--------------------------------*/
.box1, .box2, .box3 {
  background-color: #2C6AF2;
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 5px 10px #888;
  padding: 1rem;
  margin: 1rem auto;
  width: 90%;
  max-width: 400px;
  text-align: justify;
}

/* Desktop layout: 3 columns */
@media (min-width: 900px) {
  .box-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
  }

  .box1, .box2, .box3 {
    width: 30%;
    height: auto;
  }
}

/* ------------------------------
   BORDERED CONTENT SECTION
--------------------------------*/
.border {
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
  background: #243C70;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 5px 10px #888;
}

h2, p {
  margin-bottom: 1rem;
}

/* ------------------------------
   IMAGES
--------------------------------*/
.space {
  text-align: center;
  margin: 2rem 0;
}

.space img {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: 1rem;
  border-radius: 6px;
}

.ownline {
  display: block;
  margin: 2rem auto;
  width: 90%;
  max-width: 500px;
  height: auto;
}

.shade {
color: white; 
}
