body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('../assets/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  height: 100vh;
  overflow-x: hidden;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  min-height: 100vh;
}

h1 {
  font-size: 3em;
  margin-top: 20px;
  text-shadow: 2px 2px 8px #000;
}

.upload-form {
  margin-top: 20px;
}

.upload-form input[type="file"] {
  padding: 10px;
  font-size: 1em;
}

.upload-form button {
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 1em;
  cursor: pointer;
  background-color: white;
  color: black;
  border: none;
  border-radius: 5px;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  margin: 0 10px;
  font-size: 1.5em;
  color: white;
  text-decoration: none;
}

.gallery {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 100px;
}

.gallery a img,
.gallery video {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border: 2px solid white;
  border-radius: 10px;
}
.gold-message {
  font-size: 1.2em;
  color: gold;
  margin-top: 10px;
  text-shadow: 1px 1px 2px #000;
  line-height: 1.6em;
}
