
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: url('images/no-collective-bg.png') no-repeat center center/cover;
  height: 100vh;
  color: white;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.socials a {
  color: white;
  margin: 0 15px;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: #f2f2f2;
}
