body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('https://cms-images.acc.indazn.com/di/library/DAZN_News/74/5b/cristiano-ronaldo-portugal-ballon-dor-weltfussballer-2018-real-madrid-09122017_155mlmgyyqrul1q2zhzh2xefdd.jpg?t=-423976508&quality=80&w=750&h=422') 
              no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
}

h1 {
  margin-top: 30px;
  text-shadow: 2px 2px 5px black;
}

.years {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
}

.year {
  text-decoration: none;
  color: gold;
  font-size: 2em;
  font-weight: bold;
  transition: transform 0.2s, color 0.3s;
}

.year:hover {
  transform: scale(1.1);
  color: white;
}

.info {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.info:target {
  display: flex;
}

.info-content {
  background: rgba(20, 20, 20, 0.95);
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 0 15px gold;
  position: relative;
}

.info-content h2 {
  color: gold;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: gold;
  text-decoration: none;
  font-size: 1.5em;
}

#easter-egg {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 20;
}
