:root {
  --main-background-color: #182334;
  --box-shadow-dark: 0 5px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-light: 0 10px 20px rgba(255, 255, 255, 0.2);
  --theme-color: #4b272b;
}

body {
  font-family: "poppins", sans-serif;
  background: var(--main-background-color);
}

.container {
  margin: 0 auto;
  max-width: 1400px;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  grid-gap: 20px;
}

.timeline-grid {
  display: grid;
  column-gap: 90px;
  grid-template-columns: 1fr 1fr;
  padding: 0 50px;
}

.grid-2-columns {
  grid-template-columns: 1fr 1fr;
}

.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
}

.grid-3-columns-one-wide {
  grid-template-columns: 1fr 2fr 1fr;
  column-gap: 50px;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/images/enter-shikari-concert-lights-color.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  text-align: center;
  height: 100vh;
}

.hero-text {
  padding-top: 15vh;
}

.hero h1 {
  font-size: 96px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 25px;
  text-shadow: 2px 2px 10px #fff;
}
.hero h2 {
  font-size: 22px;
}

.button {
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 25px;
  padding: 10px 20px;
  box-shadow: var(--box-shadow-light);
  opacity: 0.8;
}

.button:hover {
  opacity: 1;
  transition: ease-in-out 20ms;
  box-shadow: var(--box-shadow-light);
}

.hero-button {
  border: 1px solid var(--theme-color);
  color: #ffffff;
  background: var(--theme-color);
  width: 100px;
}

.primary-button {
  border: 1px solid #8bd5e1;
  color: #ffffff;
  background: #8bd5e1;
  width: 120px;
}

#about h2 {
  opacity: 0.5;
  font-size: 18px;
  line-height: 1px;
}

.responsive {
  width: 100%;
}

.responsive.image {
  border-radius: 4px;
  box-shadow: var(--box-shadow-dark);
}

.responsive.youtube {
  border-radius: 4px;
  box-shadow: var(--box-shadow-dark);
  aspect-ratio: 16 / 9;
}

.lyrics {
  font-family: "Playwrite NZ Guides";
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.lyrics .lyrical-theme {
  font-size: 20px;
}

.selected-tracks-heading {
  text-align: center;
}

.selected-tracks-heading h2 {
  color: var(--theme-color);
}

.timeline {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 1px;
  background: var(--theme-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-container,
.timeline-container .lyrics {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

.timeline hr {
  width: 15%;
  margin-bottom: -230px;
}

.timeline-label {
  color: var(--theme-color);
}

.video-right {
  padding-top: 320px;
}

.table-section h2 {
  margin-bottom: 15px;
}

.table-section th {
  padding-bottom: 10px;
  text-align: left;
}

.table-section td {
  border-bottom: 1px solid lightgray;
}

.table-section .year {
  padding-left: 25px;
}

.table-container {
  overflow-x: auto;
}

.card {
  background: #f4f5f5;
  border-radius: 4px;
}

.card.spotify {
  background: #9d0000;
}

.recommendations-content {
  padding: 10px 25px 0 25px;
  border-radius: 4px;
}

.recommendations-content h4 {
  color: var(--theme-color);
  font-weight: 500;
}

.card p {
  font-size: 14px;
}

.footer-icons {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 22px;
}

h1 {
  font-family: "Rock Salt", cursive;
  font-weight: 400;
  font-style: normal;
}

h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
  color: var(--theme-color);
}

h4 {
  font-size: 18px;
  margin-top: 5px;
}

footer h4 {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  font-weight: bold;
}

hr {
  margin-top: 30px;
  height: 1px;
  background-color: #00000028;
  border: none;
}

main {
  background: #fffffff3;
  padding-top: 30px;
}

section {
  max-width: 100%;
  margin: 20px auto;
  padding: 0 100px;
}

section.secondary {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 25px;
  margin-bottom: 0;
}

section table {
  margin: 15px auto;
}

footer {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 12px;
  padding: 50px 100px 20px 100px;
  line-height: 1.8;
  border-radius: 4px;
}

footer a {
  color: #fff;
}

footer ul {
  padding-left: 0;
  padding-inline-start: 25px;
  list-style-type: square;
}

@media (max-width: 900px) {
  .hero {
    height: 100vh;
  }

  .hero-text {
    padding-top: 15vh;
  }

  .hero h1 {
    font-size: 38px;
    margin-bottom: 8vh;
  }

  .hero h2 {
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .button {
    font-size: 14px;
    opacity: 1;
  }

  .button:hover {
    opacity: 0.7;
  }

  .grid,
  .timeline-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .timeline-grid {
    padding: 0;
  }

  .lyrics {
    font-size: 18px;
  }

  .timeline::after,
  .timeline-label {
    display: none;
  }

  .timeline {
    padding: 0;
  }

  .timeline hr {
    margin-bottom: 0;
  }

  .video-right {
    padding-top: 0;
  }

  main {
    padding-top: 5px;
  }

  section {
    padding: 0px 20px;
  }

  footer {
    font-size: smaller;
    padding: 20px 15px 20px 15px;
    text-align: center;
  }

  footer ul {
    list-style-type: none;
    padding-left: 0;
  }
}
