@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Anton", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

input::placeholder {
  color: rgb(245, 240, 229);
}

@keyframes fill-border {
  from {
    stroke-dashoffset: 630;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutFromTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.custom-bullet {
  width: 30px !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  color: black;
  border-radius: 0px !important;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 1px solid white;
  color: white;
  opacity: 1 !important;
  line-height: 28px !important;
}

.custom-bullet.swiper-pagination-bullet-active {
  background-color: #ffcc00;
  transform: scale(1);
  background-color: white !important;
  color: #0000e6 !important;
}

.swiper {
  padding-bottom: 72px !important;
}

.swiper-slide > div {
  max-width: 500px;
  padding: 0 20px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu {
  text-align: center;
}

button.cta {
  background-color: #0000e6;
  color: white;
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease;
  outline: none;
  font-size: 18px;
  padding: 0.75rem 1.5rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
}

.search-button {
  display: none;
}

@media screen and (max-width: 1000px) {
  .points {
    font-size: 28px !important;
  }

  .artist-description {
      font-size: 14px;
  }

  .artist-name .artist-name-container > span {
    font-size: 28px;
  }

  .artist-image-container {
    width: 100px !important;
    height: 100px !important;
  }

  .artist-image-container svg {
    width: 100px;
    height: 100px;
  }

  .header .points > div {
    font-size: 22px !important;
  }

  .search-button {
    display: block;
  }
}

button.cta:hover {
  background-color: #3434ec;
}