/* Polices */
@font-face {
  font-family: 'ArialRoundedBold';
  src: url('../fonts/ArialRoundedMT-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'ArialRoundedRegular';
  src: url('../fonts/ArialRoundedMT-Regular.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'ArialRoundedRegular', sans-serif;
  color: white;
  background: #1C1E85;
  background: -webkit-linear-gradient(180deg, rgba(28, 30, 133, 1) 0%, rgba(8, 8, 52, 1) 50%);
  background: -moz-linear-gradient(180deg, rgba(28, 30, 133, 1) 0%, rgba(8, 8, 52, 1) 50%);
  background: linear-gradient(180deg, rgba(28, 30, 133, 1) 0%, rgba(8, 8, 52, 1) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1C1E85", endColorstr="#080834", GradientType=0);
  text-align: center;
  position: relative;
}

/* Japonneige */
#snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

/* Texte principal */
.intro {
  position: relative;
  z-index: 1;
  padding-top: 8vh;
  margin-bottom: 10vh;
}

h1 {
  font-family: 'ArialRoundedBold', sans-serif;
  font-size: 8vh;
  margin: 0;
}

h2 {
  font-family: 'ArialRoundedRegular', sans-serif;
  font-size: 2.5vh;
  margin-top: 1vh;
  margin-bottom: 3vh;
  font-weight: normal;
}

/* Réseaux sociaux */
.reseaux {
  z-index: 1;
  position: relative;
  margin-top: 5vh;
}

/* Aiko */
.aikochan {
  z-index: 1;
  position: relative;
  margin-top: 4vh;
}

.aikochan img {
  width: 15vh;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.spotify-btn {
  background-color: #1DB954;
  color: white;
  padding: 1vh 3vh;
  border: none;
  border-radius: 5vh;
  cursor: pointer;
  font-size: 2vh;
  display: inline-flex;
  align-items: center;
  gap: 3vh;
  text-decoration: none;
  margin-bottom: 2vh;
}

.spotify-btn:hover {
  background-color: #1ed760;
}

.spotify-btn .spotify-icon {
  width: 3vh;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  text-align: center;
  padding: 1vh 0;
  font-size: 1.8vh;
  font-family: 'ArialRoundedRegular', sans-serif;
  opacity: 0.5;
}