*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --gradient: linear-gradient(70deg, rgb(0, 0, 0) 0%, rgb(36, 36, 36) 50%, rgb(0, 0, 0) 100%);
}

@keyframes bg-animation {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
    --gradient: linear-gradient(70deg, rgb(0, 0, 0) 0%, rgb(36, 36, 36) 50%, rgb(0, 0, 0) 100%);
  }
  100% {
    background-position: left;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  cursor: crosshair;
}

/* width */
::-webkit-scrollbar {
  width: 2px;
  -webkit-transition: 1s;
  transition: 1s;
}

/* Track */
::-webkit-scrollbar-track {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

body::-webkit-scrollbar-thumb {
  box-shadow: 0px 0px 0px 100000vh black;
}

::-webkit-scrollbar:hover {
  width: 10px;
}

body {
  animation: bg-animation 10s infinite ease-in-out, fadeInAnimation ease 2s;
  animation-fill-mode: forwards;
  z-index: 0;
  background-size: 600%;
  background-image: var(--gradient);
  font-family: "Jost", sans-serif;
}

/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9900;
  font-family: "Jost", sans-serif;
}

.menu-wrap p {
  display: flex;
  position: absolute;
  bottom: 55vh;
  place-self: bottom;
  color: white;
  font-size: 0.7em;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9902;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9900;
  width: 60px;
  height: 60px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: "";
  position: absolute;
  z-index: 9900;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.2s;
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.2s ease 0.2s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(2.7px) grayscale(100%);
          backdrop-filter: blur(2.7px) grayscale(100%);
  width: 200vw;
  height: 200vh;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.2s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 3rem;
  padding: 1.5rem;
  transition: 0.2s;
}

.menu-wrap .menu > div > div > ul > li:hover {
  font-size: 4rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

#artistpanelcover {
  z-index: 91;
  display: flex;
  margin-left: 15vw;
  margin-right: 15vw;
  flex-direction: column;
  align-items: center;
  height: 75vh;
  width: 70vw;
}

#artistimagecover::-webkit-scrollbar-thumb {
  background: #ffffff;
  height: 5px;
}

#artistimagecover::-webkit-scrollbar-thumb:hover {
  background: #979797;
  width: 10px;
}

#artistimagecover::-webkit-scrollbar-track {
  background: #4d4d4d;
}

#artistimagecover::-webkit-scrollbar:hover {
  color: red;
  width: 33px;
}

#artistimagecover {
  margin-top: 20px;
  display: grid;
  flex-direction: row;
  position: relative;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  animation: slideaway 2000ms;
}

#apanel1 {
  border-bottom: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 50px;
}

#apanel2 {
  border-bottom: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}

#apanel3 {
  border-bottom: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}

#apanel4 {
  border-bottom: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}

#artistimagecover ::-webkit-scrollbar {
  color: red;
  width: 50px;
}

#artistimagecover h2 {
  font-family: "Jost", sans-serif;
  padding-bottom: 5px;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 24px;
  color: #fff;
}

#artistimagecover h3 {
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: white;
  font-weight: 300;
  margin-bottom: 5px;
}

#artistimagecover a {
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: white;
  font-weight: 300;
}

#artistimagecover a:visited {
  text-decoration: none;
}

@keyframes slideaway {
  from {
    display: none;
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
  }
}
.ahide1 {
  animation: slideaway 600ms;
}

.ahide1:hover {
  opacity: 1;
}

.ahide2 {
  animation: slideaway 600ms;
}

.ahide2:hover {
  opacity: 1;
}

.ahide3 {
  animation: slideaway 600ms;
}

.ahide3:hover {
  opacity: 1;
}

.ahide4 {
  animation: slideaway 600ms;
}

.ahide4:hover {
  opacity: 1;
}

.ahide5 {
  animation: slideaway 600ms;
}

.ahide5:hover {
  opacity: 1;
}

.ahide6 {
  animation: slideaway 600ms;
}

.ahide6:hover {
  opacity: 1;
}

.ahide7 {
  animation: slideaway 600ms;
}

.ahide7:hover {
  opacity: 1;
}

.ahide8 {
  animation: slideaway 600ms;
}

.ahide8:hover {
  opacity: 1;
}

.ahide9 {
  animation: slideaway 600ms;
}

.ahide9:hover {
  opacity: 1;
}

.ahide10 {
  animation: slideaway 600ms;
}

.ahide10:hover {
  opacity: 1;
}

.ahide11 {
  animation: slideaway 600ms;
}

.ahide11:hover {
  opacity: 1;
}

.ahide12 {
  animation: slideaway 600ms;
}

.ahide12:hover {
  opacity: 1;
}

.ahide13 {
  animation: slideaway 600ms;
}

.ahide13:hover {
  opacity: 1;
}

.ahide14 {
  animation: slideaway 600ms;
}

.ahide14:hover {
  opacity: 1;
}

.ahide15 {
  animation: slideaway 600ms;
}

.ahide15:hover {
  opacity: 1;
}

.ahide16 {
  animation: slideaway 600ms;
}

.ahide16:hover {
  opacity: 1;
}

.ahide17 {
  animation: slideaway 600ms;
}

.ahide17:hover {
  opacity: 1;
}

.ahide18 {
  animation: slideaway 600ms;
}

.ahide18:hover {
  opacity: 1;
}

.ahide19 {
  animation: slideaway 600ms;
}

.ahide19:hover {
  opacity: 1;
}

.ahide20 {
  animation: slideaway 600ms;
}

.ahide20:hover {
  opacity: 1;
}

.ahide21 {
  animation: slideaway 600ms;
}

.ahide21:hover {
  opacity: 1;
}

.ahide22 {
  animation: slideaway 600ms;
}

.ahide22:hover {
  opacity: 1;
}

.ahide23 {
  animation: slideaway 600ms;
}

.ahide23:hover {
  opacity: 1;
}

.ahide24 {
  animation: slideaway 600ms;
}

.ahide24:hover {
  opacity: 1;
}

.ahide25 {
  animation: slideaway 600ms;
}

.ahide25:hover {
  opacity: 1;
}

.ahide26 {
  animation: slideaway 600ms;
}

.ahide26:hover {
  opacity: 1;
}

.ahide27 {
  animation: slideaway 600ms;
}

.ahide27:hover {
  opacity: 1;
}

.ahide28 {
  animation: slideaway 600ms;
}

.ahide28:hover {
  opacity: 1;
}

.ahide29 {
  animation: slideaway 600ms;
}

.ahide29:hover {
  opacity: 1;
}

.ahide30 {
  animation: slideaway 600ms;
}

.ahide30:hover {
  opacity: 1;
}

.ahide31 {
  animation: slideaway 600ms;
}

.ahide31:hover {
  opacity: 1;
}

.ahide32 {
  animation: slideaway 600ms;
}

.ahide32:hover {
  opacity: 1;
}

.ahide33 {
  animation: slideaway 600ms;
}

.ahide33:hover {
  opacity: 1;
}

.ahide34 {
  animation: slideaway 600ms;
}

.ahide34:hover {
  opacity: 1;
}

.ahide35 {
  animation: slideaway 600ms;
}

.ahide35:hover {
  opacity: 1;
}

.ahide36 {
  animation: slideaway 600ms;
}

.ahide36:hover {
  opacity: 1;
}

.ahide37 {
  animation: slideaway 600ms;
}

.ahide37:hover {
  opacity: 1;
}

.ahide38 {
  animation: slideaway 600ms;
}

.ahide38:hover {
  opacity: 1;
}

.ahide39 {
  animation: slideaway 600ms;
}

.ahide39:hover {
  opacity: 1;
}

.ahide40 {
  animation: slideaway 600ms;
}

.ahide40:hover {
  opacity: 1;
}

.ahide41 {
  animation: slideaway 600ms;
}

.ahide41:hover {
  opacity: 1;
}

.ahide42 {
  animation: slideaway 600ms;
}

.ahide42:hover {
  opacity: 1;
}

.ahide43 {
  animation: slideaway 600ms;
}

.ahide43:hover {
  opacity: 1;
}

.ahide44 {
  animation: slideaway 600ms;
}

.ahide44:hover {
  opacity: 1;
}

.ahide45 {
  animation: slideaway 600ms;
}

.ahide45:hover {
  opacity: 1;
}

.ahide46 {
  animation: slideaway 600ms;
}

.ahide46:hover {
  opacity: 1;
}

.ahide47 {
  animation: slideaway 600ms;
}

.ahide47:hover {
  opacity: 1;
}

.ahide48 {
  animation: slideaway 600ms;
}

.ahide48:hover {
  opacity: 1;
}

.ahide49 {
  animation: slideaway 600ms;
}

.ahide49:hover {
  opacity: 1;
}

.ahide50 {
  animation: slideaway 600ms;
}

.ahide50:hover {
  opacity: 1;
}

.ahide51 {
  animation: slideaway 600ms;
}

.ahide51:hover {
  opacity: 1;
}

.ahide52 {
  animation: slideaway 600ms;
}

.ahide52:hover {
  opacity: 1;
}

.ahide53 {
  animation: slideaway 600ms;
}

.ahide53:hover {
  opacity: 1;
}

.ahide54 {
  animation: slideaway 600ms;
}

.ahide54:hover {
  opacity: 1;
}

.ahide55 {
  animation: slideaway 600ms;
}

.ahide55:hover {
  opacity: 1;
}

.ahide56 {
  animation: slideaway 600ms;
}

.ahide56:hover {
  opacity: 1;
}

.ahide57 {
  animation: slideaway 600ms;
}

.ahide57:hover {
  opacity: 1;
}

.ahide58 {
  animation: slideaway 600ms;
}

.ahide58:hover {
  opacity: 1;
}

.ahide59 {
  animation: slideaway 600ms;
}

.ahide59:hover {
  opacity: 1;
}

.ahide1 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 400px;
  display: none;
  flex-direction: column;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

#artistimagecover img {
  max-width: 400px;
}

#artistimagecover div {
  max-width: 400px;
}

.artist1 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide1 h3 {
  padding: 10px;
}

.ahide1 h2 {
  padding: 10px;
}

.ahide2 h3 {
  padding: 10px;
}

.ahide2 h2 {
  padding: 10px;
}

.ahide3 h3 {
  padding: 10px;
}

.ahide3 h2 {
  padding: 10px;
}

.ahide4 h3 {
  padding: 10px;
}

.ahide4 h2 {
  padding: 10px;
}

.ahide5 h3 {
  padding: 10px;
}

.ahide5 h2 {
  padding: 10px;
}

.ahide6 h3 {
  padding: 10px;
}

.ahide6 h2 {
  padding: 10px;
}

.ahide7 h3 {
  padding: 10px;
}

.ahide7 h2 {
  padding: 10px;
}

.ahide8 h3 {
  padding: 10px;
}

.ahide8 h2 {
  padding: 10px;
}

.ahide9 h3 {
  padding: 10px;
}

.ahide9 h2 {
  padding: 10px;
}

.ahide10 h3 {
  padding: 10px;
}

.ahide10 h2 {
  padding: 10px;
}

.ahide11 h3 {
  padding: 10px;
}

.ahide11 h2 {
  padding: 10px;
}

.ahide12 h3 {
  padding: 10px;
}

.ahide12 h2 {
  padding: 10px;
}

.ahide13 h3 {
  padding: 10px;
}

.ahide13 h2 {
  padding: 10px;
}

.ahide14 h3 {
  padding: 10px;
}

.ahide14 h2 {
  padding: 10px;
}

.ahide15 h3 {
  padding: 10px;
}

.ahide15 h2 {
  padding: 10px;
}

.ahide16 h3 {
  padding: 10px;
}

.ahide16 h2 {
  padding: 10px;
}

.ahide17 h3 {
  padding: 10px;
}

.ahide17 h2 {
  padding: 10px;
}

.ahide18 h3 {
  padding: 10px;
}

.ahide18 h2 {
  padding: 10px;
}

.ahide19 h3 {
  padding: 10px;
}

.ahide19 h2 {
  padding: 10px;
}

.ahide20 h3 {
  padding: 10px;
}

.ahide20 h2 {
  padding: 10px;
}

.ahide21 h3 {
  padding: 10px;
}

.ahide21 h2 {
  padding: 10px;
}

.ahide22 h3 {
  padding: 10px;
}

.ahide22 h2 {
  padding: 10px;
}

.ahide23 h3 {
  padding: 10px;
}

.ahide23 h2 {
  padding: 10px;
}

.ahide24 h3 {
  padding: 10px;
}

.ahide24 h2 {
  padding: 10px;
}

.ahide25 h3 {
  padding: 10px;
}

.ahide25 h2 {
  padding: 10px;
}

.ahide26 h3 {
  padding: 10px;
}

.ahide26 h2 {
  padding: 10px;
}

.ahide27 h3 {
  padding: 10px;
}

.ahide27 h2 {
  padding: 10px;
}

.ahide28 h3 {
  padding: 10px;
}

.ahide28 h2 {
  padding: 10px;
}

.ahide29 h3 {
  padding: 10px;
}

.ahide29 h2 {
  padding: 10px;
}

.ahide30 h3 {
  padding: 10px;
}

.ahide30 h2 {
  padding: 10px;
}

.ahide31 h3 {
  padding: 10px;
}

.ahide31 h2 {
  padding: 10px;
}

.ahide32 h3 {
  padding: 10px;
}

.ahide32 h2 {
  padding: 10px;
}

.ahide33 h3 {
  padding: 10px;
}

.ahide33 h2 {
  padding: 10px;
}

.ahide34 h3 {
  padding: 10px;
}

.ahide34 h2 {
  padding: 10px;
}

.ahide35 h3 {
  padding: 10px;
}

.ahide35 h2 {
  padding: 10px;
}

.ahide36 h3 {
  padding: 10px;
}

.ahide36 h2 {
  padding: 10px;
}

.ahide37 h3 {
  padding: 10px;
}

.ahide37 h2 {
  padding: 10px;
}

.ahide38 h3 {
  padding: 10px;
}

.ahide38 h2 {
  padding: 10px;
}

.ahide39 h3 {
  padding: 10px;
}

.ahide39 h2 {
  padding: 10px;
}

.ahide40 h3 {
  padding: 10px;
}

.ahide40 h2 {
  padding: 10px;
}

.ahide41 h3 {
  padding: 10px;
}

.ahide41 h2 {
  padding: 10px;
}

.ahide42 h3 {
  padding: 10px;
}

.ahide42 h2 {
  padding: 10px;
}

.ahide43 h3 {
  padding: 10px;
}

.ahide43 h2 {
  padding: 10px;
}

.ahide44 h3 {
  padding: 10px;
}

.ahide44 h2 {
  padding: 10px;
}

.ahide45 h3 {
  padding: 10px;
}

.ahide45 h2 {
  padding: 10px;
}

.ahide46 h3 {
  padding: 10px;
}

.ahide46 h2 {
  padding: 10px;
}

.ahide47 h3 {
  padding: 10px;
}

.ahide47 h2 {
  padding: 10px;
}

.ahide48 h3 {
  padding: 10px;
}

.ahide48 h2 {
  padding: 10px;
}

.ahide49 h3 {
  padding: 10px;
}

.ahide49 h2 {
  padding: 10px;
}

.ahide50 h3 {
  padding: 10px;
}

.ahide50 h2 {
  padding: 10px;
}

.ahide2 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist2 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide3 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist3 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide4 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist4 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide5 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist5 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide6 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist6 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide7 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist7 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide8 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist8 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide9 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist9 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide10 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist10 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide11 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist11 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide12 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist12 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide13 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist13 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide14 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist14 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide15 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist15 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide16 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist16 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide17 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist17 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide18 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist18 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide19 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist19 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide20 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist20 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide21 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist21 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide22 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist22 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

.ahide23 {
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 10vh;
  margin-right: 30vh;
  z-index: 91;
  max-width: 500px;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgb(0, 0, 0);
}

.artist23 {
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 3px;
}

#artistimagecover img {
  aspect-ratio: 1/1;
  filter: saturate(0%);
  max-height: 500px;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
}

.background {
  position: fixed;
  opacity: 0.8;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.background::After {
  content: "";
  position: absolute;
  width: 200vw;
  height: 200vh;
  left: -50%;
  top: -50%;
  /*background-image: url(data:image/png;base64,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); 

    animation: grain 1s steps(6) infinite;
  */
}

@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  30% {
    transform: translate(3%, -15%);
  }
  50% {
    transform: translate(12%, 9%);
  }
  70% {
    transform: translate(9%, 4%);
  }
  90% {
    transform: translate(-1%, 7%);
  }
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bg-animate {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}
/*NAV TOOLS START*/
#header {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
}

#lines-conta1 {
  position: fixed;
  top: 0;
  height: 60px;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.726);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(75px);
  backdrop-filter: blur(75px);
  z-index: 99;
}

#indicators {
  display: flex;
  height: 100px;
  flex-direction: row;
  align-items: center;
}

#lines-conta1 h3 {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: white;
}

#lines-conta1 h2 {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: white;
}

#lines-conta1 a {
  text-decoration: none;
}

#lines-conta1 h3 {
  transition-duration: 0.2s;
  opacity: 0.5;
}

#lines-conta1 h3:hover {
  opacity: 1;
}

/*NAV TOOLS END*/
.section1 {
  z-index: 1;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.socialssection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#logodiv {
  width: 14vw;
  min-width: 150px;
  z-index: 10;
  transition: 0.5s;
  margin: 50px;
}

#sec1logo {
  animation: ruinsani 7s ease-in-out infinite;
  filter: blur(3px) drop-shadow(0 0mm 1mm rgb(0, 0, 0));
}

#welcomediv {
  margin-top: 40px;
  margin-bottom: 20px;
  overflow: hidden;
  height: 22px;
  text-align: center;
}

#welcomediv h4 {
  font-size: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  color: rgb(255, 255, 255);
  animation: welcomeani 20s linear infinite;
  animation-delay: 1s;
  transition-delay: 1s;
}

@keyframes welcomeani {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  4% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-10%);
  }
  10% {
    transform: translateY(-10%);
  }
  14% {
    transform: translateY(-10%);
  }
  15% {
    transform: translateY(-20%);
  }
  20% {
    transform: translateY(-20%);
  }
  24% {
    transform: translateY(-20%);
  }
  25% {
    transform: translateY(-30%);
  }
  30% {
    transform: translateY(-30%);
  }
  34% {
    transform: translateY(-30%);
  }
  35% {
    transform: translateY(-40%);
  }
  40% {
    transform: translateY(-40%);
  }
  44% {
    transform: translateY(-40%);
  }
  45% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-50%);
  }
  54% {
    transform: translateY(-50%);
  }
  55% {
    transform: translateY(-60%);
  }
  60% {
    transform: translateY(-60%);
  }
  64% {
    transform: translateY(-60%);
  }
  65% {
    transform: translateY(-70%);
  }
  70% {
    transform: translateY(-70%);
  }
  74% {
    transform: translateY(-70%);
  }
  75% {
    transform: translateY(-80%);
  }
  80% {
    transform: translateY(-80%);
  }
  84% {
    transform: translateY(-80%);
  }
  85% {
    transform: translateY(-90%);
  }
  90% {
    transform: translateY(-90%);
    opacity: 1;
  }
  94% {
    opacity: 0;
  }
  95% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes ruinsani {
  0% {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(5px);
  }
  30% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
  70% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
  90% {
    opacity: 0;
    transform: scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(5px);
  }
}
#ruinsintrotxt {
  width: 80vw;
}

#linesdiv {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  transition: 1s;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#linewaves {
  position: fixed;
  z-index: -5;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 100%;
  animation: vidani 10s linear infinite;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px; /* IE 9 */ /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  margin: 0 0 3px 4px;
  width: 16px;
  height: 16px;
}

.unu, .doi, .trei {
  animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-direction: alternate;
  animation-delay: alternate;
}

.doi {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.2s;
  animation-direction: alternate;
  margin-top: -6px;
}

.trei {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.3s;
  animation-direction: alternate;
  margin-top: -6px;
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes vidani {
  0% {
    filter: hue-rotate(350deg) contrast(100%) saturate(1.2) sepia(20%);
  }
  50% {
    filter: hue-rotate(350deg) contrast(110%) saturate(1.2) sepia(20%);
  }
  100% {
    filter: hue-rotate(350deg) contrast(100%) saturate(1.2) sepia(20%);
  }
}
.section2 {
  z-index: 101;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  padding-top: 4vh;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-bottom: 4vh;
}

.section22 {
  z-index: 101;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  padding-top: 4vh;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-bottom: 4vh;
}

.section2 h2 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: 300;
  width: 70vw;
}

.section22 h2 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  color: white;
  font-weight: 300;
  width: 70vw;
}

.pagetopic {
  z-index: 90;
  text-align: center;
  height: auto;
  margin-top: 3vh;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pagetopic2 {
  z-index: 90;
  text-align: center;
  height: auto;
  margin-bottom: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#eventheader {
  margin-bottom: 2vh;
  overflow: hidden;
  font-size: 3rem;
  color: rgb(255, 255, 255);
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

#news-container::-webkit-scrollbar {
  height: 1px;
}

#news-container::-webkit-scrollbar {
  width: 1px;
  color: rgb(255, 255, 255);
}

.buyticket {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.212);
  border: 1px solid white;
  color: white;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  width: 200px;
  cursor: pointer;
  transition-duration: 0.35s;
}

.section2 #discanounce {
  color: white;
  text-decoration: underline;
}

.discticket {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background-color: rgba(255, 255, 255, 0.212);
  border: 1px solid white;
  color: white;
  padding: 10px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  transition-duration: 0.35s;
}

.buyticket:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  transition-duration: 0.35s;
}

#news-container {
  background-color: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(75px);
  backdrop-filter: blur(75px);
  box-shadow: rgba(0, 0, 0, 0.562) 0px 25px 20px -20px;
  display: grid;
  -ms-overflow-style: none;
  scrollbar-width: 1px;
  overflow-x: scroll;
  max-height: 72vh;
  max-width: 90vw;
  overscroll-behavior-inline: contain;
  background-position: center;
}

.newscolumn {
  border-bottom: solid 1px rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  transition: 0.2s;
  opacity: 1;
}

.newscolumn:hover {
  opacity: 1;
}

.newthumb {
  width: 90vw;
  max-width: 550px;
  /*min-height: 110px;*/
  margin: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.newthumb:hover img {
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  filter: saturate(100%);
}

.newthumb img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 90vw;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
  /*
  width: 110px;
  height: 110px;

  */
  filter: saturate(0%);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain;
  object-fit: contain;
  object-fit: cover;
}

.newtopic {
  margin: 0;
  padding: 10px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "Jost";
  width: 100%;
}

#newtopicheader {
  overflow: hidden;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.newtopic p {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 300;
  overflow: hidden;
  padding-bottom: 20px;
}

.maintexts h1 {
  direction: rtl;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  color: rgb(255, 255, 255);
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
}

#enderspan {
  height: 1px;
  width: 80vw;
  background-color: rgb(255, 255, 255);
}

#genresdesign {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 500px;
  height: 500px;
  transition: 0.4s;
}

#genresdesigncover {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes bustai {
  0% {
    filter: contrast(0%);
  }
  50% {
    filter: contrast(110%);
  }
  100% {
    filter: contrast(0%);
  }
}
@keyframes fontai {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes notai {
  0% {
    filter: contrast(110%);
  }
  100% {
    filter: contrast(110%);
  }
}
#bottomline {
  width: 80vw;
  height: 1px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

#bottomsign {
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  position: fixed;
  bottom: 3vh;
  transition: 0.5s;
  filter: drop-shadow(0 8px 2px rgba(0, 0, 0, 0.5));
}

#navcont {
  z-index: 1000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1vh;
  height: 50px;
  width: 300px;
}

#navcont a {
  transition: 0.3s;
  margin: 10px;
}

#navcont a:hover {
  transform: scale(1.2);
}

#IG {
  width: 22px;
  transition: 0.3s;
}

#FB {
  width: 22px;
  transition: 0.3s;
}

#SC {
  width: 22px;
  transition: 0.3s;
}

#signature {
  width: 20px;
  max-width: 30px;
  transition: 0.3s;
}

#signature:hover {
  opacity: 100%;
}

#IG:hover, #FB:hover, #SC:hover, #BTPRT:hover {
  opacity: 100%;
}

.section3 {
  position: relative;
  z-index: 10;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 4vh;
  padding-bottom: 4vh;
  margin-top: 10vh;
  gap: 5px 5px;
}

#sect3vid {
  position: absolute;
  top: 0;
  left: 0;
}

.cont-cont {
  padding: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.maintexts h1 {
  font-size: 2em;
}

.section3 img {
  max-width: 80vw;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.5;
}

.section3 img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.textcontainer {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: block;
  margin-top: 10px;
}

.maintexts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.maintexts.text2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.maintexts.text3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.maintexts.text4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cont-cont {
  align-self: center;
}

.maintexts2 {
  display: flex;
  max-height: 700px;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 1vh;
  aspect-ratio: 9/16;
}

.maintexts2 img {
  -o-object-fit: cover;
     object-fit: cover;
}

.maintexts2 h1 {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: white;
  font-weight: 100;
  overflow: hidden;
}

.infotexts h2 {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  overflow: hidden;
  color: rgb(255, 255, 255);
}

@keyframes lightnin {
  0% {
    opacity: 1;
    filter: contrast(80%);
  }
  70% {
    opacity: 1;
    filter: contrast(120%);
  }
  80% {
    opacity: 0;
    filter: contrast(120%);
  }
  83% {
    opacity: 1;
    filter: contrast(80%);
    filter: drop-shadow(0px 0px 4px rgb(9, 255, 0));
  }
  86% {
    opacity: 0;
    filter: contrast(120%);
  }
  89% {
    opacity: 1;
    filter: contrast(80%);
    filter: drop-shadow(0px 0px 4px rgb(174, 0, 255));
  }
  100% {
    opacity: 1;
    filter: contrast(120%);
  }
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.section4 {
  z-index: 10;
  width: 100vw;
  padding-left: 10vw;
  height: 15vh;
  padding-right: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  padding-top: 4vh;
  padding-bottom: 4vh;
  position: relative;
}

.discoverruins {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  left: -1500px;
  overflow: hidden;
  white-space: nowrap;
}

.discoverruins h1 {
  font-size: 4rem;
  font-family: "Jost", sans-serif;
  color: rgb(255, 255, 255);
  overflow: hidden;
  padding-bottom: 30px;
}

.section5 {
  position: relative;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  margin-top: 20vh;
  padding-left: 15vw;
  padding-right: 15vw;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 5vh;
       column-gap: 5vh;
  row-gap: 5vw;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 10vh;
  /*
  padding-top: 20vh;
  padding-bottom: 20vh;
  margin-top: 10vh;
  */
  background-color: rgb(255, 255, 255);
  font-family: "Jost", sans-serif;
  color: rgb(0, 0, 0);
}

#contactsection {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  position: relative;
  background-color: white;
  z-index: 11;
  top: 0;
  left: 0;
  overflow: hidden;
}

#contactsection2 {
  position: relative;
  background-color: white;
  z-index: 11;
  top: 0;
  left: 0;
  overflow: hidden;
}

.section5 h1, h2, h3, h4, h5 {
  overflow: hidden;
}

.section5 h1 {
  font-size: 32px;
  font-weight: 500;
}

.section5 h2 {
  padding-bottom: 2vh;
  font-size: 24px;
  font-weight: 400;
}

.section5 h3 {
  padding-bottom: 2vh;
  font-size: 20px;
  font-weight: 300;
}

.section5 h4 {
  padding-bottom: 3vh;
  font-size: 20px;
  font-weight: 200;
}

.section5 a:link {
  text-decoration: none;
  color: black;
}

.section5 a:visited {
  color: black;
  text-decoration: none;
}

.contactmarquee {
  overflow: visible;
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.contactmarquee marquee {
  font-size: 34vh;
  white-space: nowrap;
}

.section5 .contactmarquee h1 {
  animation: contactanimate 5s ease infinite;
}

/*
@keyframes contactanimate{
  0%{transform:translateX(0px)}
  50%{transform:translateX(500px)}
  100%{transform:translateX(0px)}

}

*/
@keyframes s1ani {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes s2ani {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes s3ani {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 700px) {
  .maintexts h1 {
    font-size: 2.5em;
  }
  #news-container {
    max-width: 80vw;
  }
  #newtopicheader {
    font-size: 1.7rem;
  }
  .infotexts h2 {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1000px) {
  .section4 {
    height: 20vh;
  }
  #news-container {
    width: 70vw;
  }
  .newtopic p {
    font-size: 1.5rem;
  }
  .textcontainer {
    display: flex;
    max-width: 80vw;
  }
  .maintexts h1 {
    font-size: 2.5em;
  }
  .section3 {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 15vw;
    padding-right: 15vw;
  }
  .infotexts h2 {
    font-size: 1.2;
  }
  .cont-cont {
    width: 47%;
    align-items: center;
    padding: 0;
  }
  .discoverruins {
    left: -2000px;
  }
  .discoverruins h1 {
    font-size: 8rem;
  }
  .section5 h1 {
    font-size: 3.5rem;
  }
  .section5 h2 {
    font-size: 2rem;
    font-weight: 300;
  }
  .section5 h3 {
    font-size: 2rem;
    font-weight: 300;
  }
  .section5 h4 {
    font-size: 2rem;
    font-weight: 200;
  }
}
@media screen and (min-width: 1200px) {
  #artistimagecover {
    display: flex;
    flex-direction: row;
  }
  #apanel2 {
    margin-left: 15vw;
  }
  .artist1:hover + .ahide1 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist2:hover + .ahide2 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist3:hover + .ahide3 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist4:hover + .ahide4 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist5:hover + .ahide5 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist6:hover + .ahide6 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist7:hover + .ahide7 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist8:hover + .ahide8 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist9:hover + .ahide9 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist10:hover + .ahide10 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist11:hover + .ahide11 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist12:hover + .ahide12 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist13:hover + .ahide13 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist14:hover + .ahide14 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist15:hover + .ahide15 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist16:hover + .ahide16 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist17:hover + .ahide17 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist18:hover + .ahide18 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist19:hover + .ahide19 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist20:hover + .ahide20 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist21:hover + .ahide21 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist22:hover + .ahide22 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist23:hover + .ahide23 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist24:hover + .ahide24 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist25:hover + .ahide25 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist26:hover + .ahide26 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist27:hover + .ahide27 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist28:hover + .ahide28 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist29:hover + .ahide29 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist30:hover + .ahide30 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist31:hover + .ahide31 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist32:hover + .ahide32 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist33:hover + .ahide33 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist34:hover + .ahide34 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist35:hover + .ahide35 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist36:hover + .ahide36 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist37:hover + .ahide37 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist38:hover + .ahide38 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist39:hover + .ahide39 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist40:hover + .ahide40 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .artist41:hover + .ahide41 {
    display: block;
    color: rgb(0, 0, 0);
  }
  .maintexts h1 {
    font-size: 3rem;
  }
  .section4 {
    align-items: flex-start;
    justify-content: space-between;
  }
  .infotexts p {
    font-size: 20px;
  }
  .section3 a {
    font-size: 22px;
  }
  .section4 a {
    font-size: 22px;
  }
  .maintexts2 h1 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .newscolumn {
    flex-direction: row;
  }
  #eventheader {
    font-size: 4rem;
  }
  .discoverruins h1 {
    font-size: 9rem;
  }
  .section4 {
    height: 20.5vh;
  }
}
@media screen and (min-width: 1800px) {
  .section4 {
    height: 22vh;
  }
  .section2, .section3, .section4, .section5 {
    margin-left: auto;
    margin-right: auto;
  }
  #bottomline {
    width: 70vw;
  }
  #ruinsintrotxt {
    width: 70vw;
  }
  #enderspan {
    height: 1px;
    width: 70vw;
    background-color: rgb(255, 255, 255);
  }
  .cont-cont {
    width: 24%;
    align-items: center;
    padding: 0;
  }
  .discoverruins h1 {
    font-size: 10rem;
  }
}/*# sourceMappingURL=main.css.map */