@import url("https://fonts.cdnfonts.com/css/space-grotesk");
@import url("https://fonts.cdnfonts.com/css/rooste");
body {
  margin: 0;
  padding: 0;
  background-color: white;
  height: 100vh;
  width: 100vw;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #af228e;
}

::selection {
  color: #eb5e34;
  background: white;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #eb5e34;
}

header {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.hidden,
.mobile-hidden {
  display: none;
}

#content {
  margin-top: 20vh;
  z-index: 2100;
  position: absolute;
  top: 0;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(transparent, #eb5e34);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.bye {
  margin-top: 8rem;
}

.container {
  padding: 2rem;
  border: 0px solid #eb5e34;
  min-height: 100%;
  max-width: 1660px;
}

p {
  margin: 0;
  margin-bottom: 3rem;
}
p.special {
  margin-top: 10rem;
}

article {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4rem;
  margin-bottom: 10rem;
  max-width: 100%;
}

.intro {
  margin: 8rem 0;
  font-size: 2.5rem;
  width: 100%;
}

h2 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.8;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul li {
  margin-top: 1rem;
  margin-left: 0;
}
ul li::before {
  max-width: 0;
  position: relative;
  left: -2rem;
  content: "*";
  display: inline-flex;
}

.artists-list {
  display: flex;
  flex-flow: column;
  margin-top: 4rem;
}

.artists-header {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 600px;
  align-self: start;
}

.artists-container {
  width: 100%;
  margin-top: 8rem;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-entry {
  display: flex;
  flex-flow: row;
  align-items: baseline;
  position: relative;
}

.artist-name {
  font-family: "", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  white-space: nowrap;
}

a {
  text-decoration: none;
  font-size: inherit -1rem;
  font-weight: 400;
  color: inherit;
  border: 2px solid #af228e;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
}
a:hover {
  background: #af228e;
  color: white;
}
a.smaller {
  font-size: 2rem;
}
a.small {
  font-size: 2rem;
  padding: 0;
  margin-left: 1rem;
}

.info {
  font-size: 1.5rem;
  font-style: italic;
  border: 2px solid #af228e;
  padding: 1.5rem;
  border-radius: 1rem;
}

.universe {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Planet styling */
.planet {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 50%), #eb5e34;
}

/* Orbit Styling */
.orbit {
  position: absolute;
  border: 1px solid red;
  border-radius: 50%;
  transform-style: preserve-3d;
}

/* Moon Styling */
.moon {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 50%), #eb5e34;
}

body.flash {
  animation: flash 0.3s;
}

.star {
  position: absolute;
  border-radius: 50%;
  background-color: red;
  opacity: 0.5;
  animation: sparkle infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    background: #eb5e34;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 11px;
  }
  .artist-entry:nth-of-type(1) {
    left: 36px;
  }
  .artist-entry:nth-of-type(2) {
    left: 7px;
  }
  .artist-entry:nth-of-type(3) {
    left: -5px;
  }
  .artist-entry:nth-of-type(4) {
    left: 6px;
  }
  .artist-entry:nth-of-type(5) {
    left: 36px;
  }
  .artist-entry:nth-of-type(6) {
    left: 26px;
  }
  .artist-entry:nth-of-type(7) {
    left: 13px;
  }
  .artist-entry:nth-of-type(8) {
    left: -6px;
  }
  .artist-entry:nth-of-type(9) {
    left: -17px;
  }
  .artist-entry:nth-of-type(10) {
    left: 5px;
  }
  .artist-entry:nth-of-type(11) {
    left: 4px;
  }
  .artist-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: -0.5rem;
  }
}
@media screen and (min-width: 576px) {
  html {
    font-size: 12px;
  }
  .content-block {
    max-width: 700px;
  }
  h2 {
    max-width: 600px;
  }
  .artist-entry {
    margin-top: -0.5rem;
  }
  .artist-entry:nth-of-type(1) {
    left: -19px;
  }
  .artist-entry:nth-of-type(2) {
    left: 28px;
  }
  .artist-entry:nth-of-type(3) {
    left: -40px;
  }
  .artist-entry:nth-of-type(4) {
    left: -53px;
  }
  .artist-entry:nth-of-type(5) {
    left: 33px;
  }
  .artist-entry:nth-of-type(6) {
    left: 1px;
  }
  .artist-entry:nth-of-type(7) {
    left: -18px;
  }
  .artist-entry:nth-of-type(8) {
    left: -24px;
  }
  .artist-entry:nth-of-type(9) {
    left: 14px;
  }
  .artist-entry:nth-of-type(10) {
    left: -23px;
  }
  .artist-entry:nth-of-type(11) {
    left: -26px;
  }
  .artist-entry:nth-of-type(12) {
    left: -5px;
  }
  .artists-header {
    max-width: 600px;
  }
  .artists-header > h2 {
    max-width: 450px;
  }
  .artist-name {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 13px;
  }
  #content {
    margin-top: calc(30vh - 4rem);
    padding: 4rem;
  }
  .container {
    padding: 4rem;
  }
  article {
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: auto;
  }
  .intro {
    width: 66%;
  }
  h2 {
    min-width: 33%;
    max-width: 33%;
  }
  .mobile-hidden {
    display: flex;
  }
  .artists-list {
    margin-top: 8rem;
  }
  .artists-header {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    max-width: 100%;
    align-items: end;
  }
  .artists-header > p {
    margin: 0;
  }
  .artists-header > h2 {
    margin-bottom: 10rem;
  }
  .artist-name {
    font-size: 6rem;
    margin-top: 1rem;
    margin-right: 1rem;
  }
  .artist-entry {
    margin-top: -0.5rem;
  }
  .artist-entry:nth-of-type(1) {
    left: 68px;
  }
  .artist-entry:nth-of-type(2) {
    left: 88px;
  }
  .artist-entry:nth-of-type(3) {
    left: 83px;
  }
  .artist-entry:nth-of-type(4) {
    left: 97px;
  }
  .artist-entry:nth-of-type(5) {
    left: 43px;
  }
  .artist-entry:nth-of-type(6) {
    left: -97px;
  }
  .artist-entry:nth-of-type(7) {
    left: 34px;
  }
  .artist-entry:nth-of-type(8) {
    left: 27px;
  }
  .artist-entry:nth-of-type(9) {
    left: -8px;
  }
  .artist-entry:nth-of-type(10) {
    left: 10px;
  }
  .artist-entry:nth-of-type(11) {
    left: -62px;
  }
  .artist-entry:nth-of-type(12) {
    left: 38px;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
  h2 {
    min-width: 25%;
    max-width: 25%;
    margin-right: 8rem;
  }
  .intro {
    margin-left: 10rem;
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
  .artist-name {
    font-size: 6rem;
    margin-top: 1rem;
  }
  article {
    gap: 0;
  }
  .artist-entry {
    margin-top: -1rem;
  }
  .artist-entry:nth-of-type(1) {
    left: 93px;
  }
  .artist-entry:nth-of-type(2) {
    left: -12px;
  }
  .artist-entry:nth-of-type(3) {
    left: 118px;
  }
  .artist-entry:nth-of-type(4) {
    left: 92px;
  }
  .artist-entry:nth-of-type(5) {
    left: -97px;
  }
  .artist-entry:nth-of-type(6) {
    left: 11px;
  }
  .artist-entry:nth-of-type(7) {
    left: -16px;
  }
  .artist-entry:nth-of-type(8) {
    left: 57px;
  }
  .artist-entry:nth-of-type(9) {
    left: 29px;
  }
  .artist-entry:nth-of-type(10) {
    left: -52px;
  }
  .artist-entry:nth-of-type(11) {
    left: -47px;
  }
  .artist-entry:nth-of-type(12) {
    left: 0px;
  }
}

/*# sourceMappingURL=styles.css.map */
