:root {
  --color-primary: #31928d;
  --color-secondary: #1c4f4d;
  --color-fg: #ffffff;
  --sp1: 1.2rem;
  --sp2: 2.4rem;
  --sp0: 1rem;
  --footer-height: 60px;
}

@font-face {
  font-family: "Mauline";
  src: url("assets/Mauline.otf") format("opentype"),
    /* Modern Browsers */ url("assets/Mauline.woff") format("woff"),
    /* Safari, Android, iOS */ url("assets/Mauline.ttf") format("truetype"),
    /* Legacy iOS */ url("assets/Mauline.svg#Mauline") format("svg");
}
@font-face {
  font-family: "Lora";
  src: url("assets/Lora-VariableFont_wght.ttf") format("truetype");
}

html,
body {
  height: 100%;
  background-color: var(--color-primary);
  color: var(--color-fg);
  font-family: "Lora", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: var(--sp2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp1);
}

h1 {
  font-family: "Mauline", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 4rem;
}

img.band-img {
  width: 100%;
  max-width: 560px;
}

section.one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
}

section.two {
  flex: 1 0 auto;
  max-width: 25%;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

p {
  max-width: 40rem;
  margin-block-end: var(--sp0);
}

footer {
  display: flex;
  justify-content: space-evenly;
  background-color: var(--color-secondary);
  background-attachment: fixed;
  position: fixed;
  width: 100%;
  bottom: 0;
  align-items: center;
  height: var(--footer-height);
}

footer > a {
  padding-block: 8px;
  padding-inline: 12px;
  color: white;
  transition: 0.2s;
  border-radius: 4px;
}

footer > a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.container {
  padding-inline: var(--sp1);
  padding-block: var(--sp1);
  display: flex;
  flex-direction: column;
}

.icon {
  font-size: 22px;
}

.video-player {
  position: relative;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body {
  background-position: center;
  background-size: 130%;
  background-repeat: no-repeat;
  min-height: 100vh;
  height: max-content;
}

@media (max-width: 1299px) {
  body {
    background-image: none !important;
  }
  section.two {
    display: none;
  }
  .container {
    margin-block-end: var(--footer-height);
  }
}

@media (min-width: 1300px) {
  h1 {
    font-size: 8rem;
  }
  section.one {
    max-width: 300px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: var(--sp2);
  }
  header > .video-player {
    display: none;
  }
  header {
    background-image: none !important;
  }
  .container {
    flex-direction: row;
    justify-content: space-evenly;
    padding-block-end: 100px;
  }
  body {
    background-image: inherit;
  }
  .icon {
    font-size: 32px;
  }
}
