@import url("https://fonts.googleapis.com/css2?family=Quando&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap");

body {
  /* font-family: 'Pacifico', cursive; */
  font-family: "Roboto", sans-serif;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(233, 89, 189, 1) 100%
  );
  text-align: left;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

main, section {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  margin: auto;
  border-left: 8px solid #fff;
  border-right: 8px solid #fff;
  border-bottom: 8px solid #fff;
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  width: calc(100% - 8px);;
  height: auto;
  padding: 1.5rem;
    background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(233, 89, 189, 1) 100%
  );
  z-index: 99;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 60px, rgba(255, 255, 255, 0.2) 0px 0px 0px 0.5px inset;
}

.logo {
  display: flex;
  width: 25%;
  justify-content: flex-start;
  align-items: center;
}

.svg-logo {
  height: 56px;
  fill: #fff;
}

.logo-mobile {
  width: 0%;
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.svg-logo-mobile {
  height: 56px;
  fill: #fff;
}


.links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 75%;
}

a {
  display: block;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  z-index: 89;
}

a:hover {
  text-decoration: underline;
}

.no-underline {
}

.no-underline:hover {
  text-decoration: none;
}

p {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
}


.nav {
  display: flex;
  list-style-type: none;
  color: white;
  cursor: pointer;
  background-position: 100%;
}

.nav-links {
  padding: 1rem;
  margin: 0px 0.5rem;
  border-radius: 100%;
  transition: all 200ms ease;
  background-color: rgba(0, 0, 0, 0.0);
}

.nav-links:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10% 50% / 50% 10%;
}

.hero {
  max-width: 100%;
  display: flex;
  height: auto;
  margin-top: 128px;
  flex-direction: column;
  padding: 1.5rem;
}

.sub-text {
  width: 100%;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
}

h1 {
  display: flex;
  width: 100%;
  font-size: 8rem;
  /* font-family: "Quando", cursive; */
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #fff;
}

h2,
h3 {
  width: 100%;
  font-size: 2.5rem;
  /* font-family: "Quando", cursive; */
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #fff;
  padding: 1.5rem;
}

h3 {
  width: 100%;
  font-size: 2rem;
}

.mapFrame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-image: url("https://michaelvaughngreen.com/muralwalk/muralmap.png");
  background-position: center;
  background-size: cover;
}

.mapCover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1;
  border-top: 8px solid #fff;
  border-bottom: 8px solid #fff;
}

.mapButton {
  display: flex;
  text-align: center;
  padding: 16px;
  font-size: 2rem;
  line-height: normal;
  color: #fff;
  background-image: linear-gradient(
    209.21deg,
    rgb(87, 15, 141) 13.57%,
    rgb(243, 91, 160) 98.38%
  );
  border-radius: 8px;
  font-weight: 700;
  z-index: 49;
  transition: all 300ms ease;
  cursor: pointer;
}

.mapButton:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-8px);
}

.artist-row {
  display: flex;
  flex-direction: column;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 8px 8px 16px 8px;
  margin: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 60px 0px,
    rgba(255, 255, 255, 0.2) 0px 0px 0px 0.5px inset;
  background: rgba(0, 0, 0, 0.1);
    transition: all 300ms ease;
}

.artist-row:hover {
    background: rgba(0, 0, 0, 0.3);
}


.artist-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  color: #fff;
  margin-left: 1rem;
}

.text-breaker {
  color: #fff;
}

.link-padding {
  padding: 0px 8px;
}

.para-width {
  width: 50%;
  line-height: 1.5rem;
}

.mt {
  margin-top: 40px;
}

.mtsub {
  margin-top: 1rem;
}

.padd {
    padding: 1.5rem;
}

.card-row {
  width: 100%;
    height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0px;
   margin: 0px;
}

.cardbox {
  
}

.card {
  width: 33.33333333%;
  display: flex;
  margin: 0px;
  padding: 1rem;
  height: auto;
  color: #fff;
  flex-direction: column;
  border-radius: 16px;
  background-color: rgba(0,0,0, 0.4);
  margin-top: 3rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.card:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-8px);
}

.card-title {
  font-weight: 600;
  font-size: 1.5rem;
  width: 100%;
}

.card-text {
  margin-top: 8px;
  font-weight: 400;
  font-size: 1rem;
  width: 100%;
}

footer {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  padding: 32px;
}


@media only screen and (max-width: 600px) {
.para-width {
  width: 100%;
}
  .card-row {
    flex-direction: column;
  }
  
  
  .card {
   width: 100%;
   margin-right: 0px;
  }
  
  .nav-links {
  padding: 0.5rem 0.25rem;
  margin: 0px 0.25rem;
  }
  
  h1 {
   font-size: 4rem; 
  }
  
  .logo {
  display: none;
  width: 0%;
}

.logo-mobile {
  display: flex;
  width: 25%;
}

.svg-logo-mobile {
  height: 56px;
}
  
}