* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Comic Sans MS', cursive;
  cursor: url('cursor.png'), auto;
}

#entry {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('bg.gif') repeat;
  animation: bgScroll 60s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
}

@keyframes bgScroll {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

#main {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #222;
  color: white;
  overflow-y: auto;
  height: 100vh;
  padding: 2rem;
}

.carousel {
  width: 80%;
  overflow-x: scroll;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.carousel img, .carousel a {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 5px solid #ff69b4;
  border-radius: 20px;
}

button {
  background: #ff69b4;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

button:hover {
  transform: scale(1.1);
}

.socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.socials a img {
  width: 40px;
  height: 40px;
}
