@font-face {
  font-family: "Rubik";
  src:
    local("Rubik Bold"),
    local("Rubik-Bold"),
    url("./fonts/Rubik-Bold.woff2") format("woff2"),
    url("./fonts/Rubik-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  outline: none;
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #6f2e0c;
  background-color: white;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: normal;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

main {
  overflow: hidden;
  max-width: 100vw;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

picture {
  display: flex;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-family: inherit;
  font-weight: 700;
  font-size: 26px;
  line-height: normal;
  text-align: center;
  color: #6f2e0c;
  max-width: 317px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  width: 100%;
  top: 50%;
  transform: translate(-50%, -188%);
}

h1 span {
  font-size: 20px;
  display: block;
  line-height: normal;
}

a {
  border-radius: 30px;
  width: 237px;
  height: 44px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #d21414;
  text-decoration: none;
  padding: 13px 10px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -304%);
}

.radio {
  width: 74.667vw;
  height: auto;
  position: absolute;
  bottom: 33vh;
  left: 50%;
  transform: translate(-50%);
}

.notes {
  position: absolute;
  bottom: 25vh;
  left: 50%;
  transform: translateX(-50%);
  width: 276vw;
  height: auto;
  z-index: -1;
}

@media (min-width: 768px) {
  h1 {
    font-size: 32px;
    max-width: 872px;
    transform: translate(-50%, -200%);
  }
  .radio {
    bottom: 0;
    width: 66.667vw;
  }
  .notes {
    bottom: 0;
    width: 201vw;
  }
}
@media (min-width: 1024px) {
  h1 {
    transform: translate(-50%, -180%);
  }
  .radio {
    width: 32vw;
  }
  .notes {
    width: 92vw;
  }

  a {
    transform: translate(-50%, -220%);
  }
}

@media (min-width: 1440px) {
  h1 {
    font-size: 48px;
    transform: translate(-50%, -156%);
  }
  .radio {
    width: 591px;
  }
  .notes {
    width: 1920px;
  }
}
@media (min-width: 1920px) {
  h1 {
    font-size: 62px;
    transform: translate(-50%, -150%);
  }
  h1 span {
    font-size: 32px;
  }
}

