/* Define the body style */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #f4f4f9;
}

/* Background image with overlay */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("21.webp") no-repeat center center fixed;
  background-size: cover;
  z-index: -2;
}

/* Black overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Content styling */
header {
  text-align: center;
  color: #ffa500;
  margin-top: 20px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  color: #ffa500;
  z-index: 1;
}

h1 {
  color: #ffa500;
}

p,
h3 {
  color: #ffa500;
}

.social-links,
.community-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

/* Flexbox for icon rows */
.first-row,
.second-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.second-row {
  margin-top: 10px;
}

img {
  height: 30px;
}
