html, body {
  background-color: #000000;
  text-align: center;
  overflow-x: hidden;
  margin: 0;
}

#container {
  width: 100%;
}

.background-black {
  background-color: #000000;
}

.fullHeight {
  height: 100vh;
}

.circle {
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.white {
  background-color: #FFFFFF;
}

.glow {
  box-shadow: 0px 0px 6px 1px #FFFFFF;
  animation: pulse 6s ease-in-out 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0px 0px 6px 1px #FFFFFF; }
  50% { box-shadow: 0px 0px 9px 1.5px #FFFFFF; }
  100% { box-shadow: 0px 0px 6px 1px #FFFFFF; }
}

.randomPosition {
  position: absolute;
}

#splashText {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

h1, h4 {
  font-family: 'Open Sans', sans-serif;
  color: #FDD835;
}

h1 {
  font-weight: 800;
  font-size: 500%;
}

h4 {
  opacity: 0.6;
  font-weight: 300;
}

#splashText a h4 {
  font-weight: 800;
  opacity: 1;
  margin-top: 30px;
}

.transitionStar {
  -webkit-transition-property: top, left;
  -webkit-transition-duration: 0.3s;
}

#sites {
  position: relative;
  z-index: 1;
  background-color: #000000;
  padding: 70px 20px 110px;
}

#sites h2 {
  font-family: 'Open Sans', sans-serif;
  color: #FDD835;
  font-weight: 800;
  font-size: 220%;
  margin: 0 0 45px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.card {
  display: block;
  width: 260px;
  padding: 30px 24px;
  border: 1px solid rgba(253, 216, 53, 0.3);
  border-radius: 12px;
  background-color: #0a0a0a;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #FDD835;
  box-shadow: 0 0 18px rgba(253, 216, 53, 0.35);
}

.card h3 {
  font-family: 'Open Sans', sans-serif;
  color: #FDD835;
  font-weight: 800;
  font-size: 145%;
  margin: 0 0 8px;
}

.card p {
  font-family: 'Open Sans', sans-serif;
  color: #FFFFFF;
  font-weight: 300;
  opacity: 0.6;
  margin: 0;
}
