
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

header {
  background-color: #2c3e50;
  padding: 20px;
  height: 30px;
  text-align: center;
  color: #fff;
  position: relative;
}

#logo {
  float: left;
}

#join-us {
  float: right;
}

nav {
  background-color: #34495e;
  overflow: hidden;
  height: 50px;
  /* Centering the navigation */
  display: flex;
  justify-content: center;
}

nav a {
  display: block;
  color: #ecf0f1;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #2980b9;
  color: #fff;
}

section {
  padding: 40px;
  text-align: center;
}

h1, h2 {
  color: #2c3e50;
}

p {
  font-size: 1.2em;
  line-height: 1.6em;
  color: #555;
}

.gallery img {
  max-width: 100%;
  height: auto;
}
main {
  padding: 20px;
  text-align: center; /* Center the content */
}

#contact-section {
  max-width: 600px;
  margin: 0 auto; /* Center the contact section within the main section */
  text-align: left; /* Reset text-align for the content within the contact section */
}
/* assets/style.css */

/* (Previous styles) */

#about-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#about-section th, #about-section td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

#about-section th {
  background-color: #f2f2f2;
}

/* (Remaining styles) */
/* assets/style.css */

/* (Previous styles) */

#profile-section {
  text-align: center;
  padding: 20px;
}

#profile-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

#profile-info img {
  border-radius: 50%;
  margin-right: 20px;
}

#profile-info div {
  text-align: left;
}

/* (Remaining styles) */
/* assets/style.css */

/* (Previous styles) */
/* assets/style.css */

/* (Previous styles) */

#gallery-section {
  text-align: center;
  padding: 20px;
}

.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  justify-content: center;
}

.image-container img {
  max-width: 100%;
  border-radius: 8px;
}

/* Random positioning */
.image-container img:nth-child(2n) {
  justify-self: start; /* Align to the left */
}

.image-container img:nth-child(3n) {
  justify-self: center; /* Align to the center */
}

.image-container img:nth-child(4n) {
  display: inline-block; /* Display side by side */
  margin-right: 16px;
}

/* (Remaining styles) */

footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 10px;
  bottom: 0;
  width: 100%;
}