/* General Styles */
body {
  font-family: 'Rubik', sans-serif;
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Chewy', cursive;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

p {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  background: #1a1a1a;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00eaff;
}

/* Section Styling */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section:nth-child(even) {
  background: #1a1a1a;
}

.section:nth-child(odd) {
  background: #121212;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.section img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  max-width: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

/* Contributors */
.contributors {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contributor {
  text-align: center;
  margin: 10px;
}

.contributor img {
  max-width: 150px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.scroll-button {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: #ff007f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease;
}

.scroll-button:hover {
  background: #00eaff;
}

.scroll-button.left {
  left: 20px;
}

.scroll-button.right {
  right: 20px;
}

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff007f;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: background 0.3s ease;
}

.floating-button:hover {
  background: #00eaff;
}
