/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #000000;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  line-height: 1.4;
  min-height: 100vh;
  background-image: url("radiomast_white_2048h.png");
  background-repeat: no-repeat;
  /* Make image fill page height while preserving proportions */
  background-size: auto 100vh;
  background-position: left top;
}

main {
  max-width: 600px;
  margin: 0 auto;
  padding: 1em 1em 1em 2em;
  background-color: rgba(255, 255, 255, 0.5);

}
.accent {
  color: #d40000;
}

a {
  color: #d40000;
}
a:hover,
a:focus {
  color: #a40000;
}

/* TITLE */
.title {

}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 40px 0 20px 0;
}

/* PLAYER */
.player {
}

audio {
    margin: 0 0 20px 0;
}

/* TEXT */
.text {
  font-size: 1rem;
}


.text p {
  margin: 0 0 1.25rem 0;
}

/* FOOTER META */
.meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  padding-top: 1rem;
  border-top: 1px solid #000;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  body {
    background-image: none;
  }
  h1 {
    font-size: 2.5em;
  }    
}

