html {
  font-family: Six Caps;
  color: white;
  background-color: black;
}

a {
  text-decoration: none;
}

body {
  margin: 1vh;
}

.container {
  display: grid;
}

header {
  grid-row-start: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  justify-content: center;
}

.logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  height: 6vh;
}

.header-socials {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: flex-start;
}

.text {
  display: grid;
  grid-row-start: 2;
  font-family: 'Arial Narrow', sans-serif;
  text-align: center;
  justify-self: center;
  align-self: center;
}

.spotify-embed {
  grid-row-start: 3;
}

footer {
  grid-row-start: 4;
  display: grid;
  grid-template-rows: 50% 50%;
}

.footer-socials {
  justify-self: center;
  align-self: center;
}

.footer-logo {
  justify-self: center;
  align-self: center;
  height: 3vh;
}

@media all and (min-width: 1200px) {
  .container {
    grid-template-rows: 1fr 1fr 3fr 1fr;
  }

  header {
    grid-template-columns: [left] 10% [center] 80% [right] 10%;
  }

  .logo {
    height: 10vh;
  }

  .header-socials img {
    width: 3.5vh;
    margin: 0.75vh;
  }

  .text {
    font-size: 3.5vh;
  }

  .spotify-embed {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr;
  }

  .spotify-embed iframe {
    grid-column: 2;
    width: 27vw;
    height: 35vh;
  }

  .footer-socials img {
    width: 2.5vh;
    margin: 0.5vh;
  }
}

@media all and (max-width: 1199px) {
  .container {
    grid-template-rows: 2fr 2fr 4fr 1fr;
  }

  .logo {
    height: 6vh;
  }

  .header-socials img {
    width: 4.5vh;
    margin: 1vh;
  }

  .text {
    font-size: 3vh;
  }

  .spotify-embed {
    display: grid;
    justify-content: center;
  }

  .spotify-embed iframe {
    grid-column: 2;
    width: 80vw;
    height: 40vh;
  }

  .footer-socials img {
    width: 2.5vh;
    margin: 0.5vh;
  }
}
