@font-face {
  font-family: 'Inter Rounded';
  font-style: normal;
  font-weight: normal;
  src: local('Inter Rounded'),
        url('/interrounded-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Apfel Grotezk';
  font-style: normal;
  font-weight: normal;
  src: url('/ApfelGrotezk-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Apfel Grotezk';
  font-style: normal;
  font-weight: bold;
  src: url('/ApfelGrotezk-Fett.woff2') format('woff2');
}

:root{
  --s-gap: 24px;
  --gap: 40px;
  --l-gap: 56px;

  --title-size: 32px;
}

@media (min-width: 720px){
  :root{
    --s-gap: 32px;
    --gap: 56px;
    --l-gap: 80px;

    --title-size: 80px;
  }

  .movie-title{
    letter-spacing: -1.6px;
  }
}

body{
  font-family: "Apfel Grotezk";
  letter-spacing: 0.4px;
  font-size: 20px;
  /* font-family: 'Inter Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */

  background-color: #0F0F0F;
  color: #EDEDEF;
  margin: 0;
}

ul, ol{
  margin: 0;
  padding: 0;
}

main{
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--s-gap);
}

main > header{
  grid-area: header;
}
main > .content{
  grid-area: content;
}

main > .side {
  grid-area: sidebar;
}
main > footer {
  grid-area: footer;
}


button, select{
  font-family: inherit;
}

.secondary-text{
  color: #A09FA6;
}

.selector{
  border: none;
  border-radius: 8px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  background-color: #2F2F2F;
  padding: 4px 10px;
  color: inherit;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L4 4L7 1" stroke="%23717171" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  padding-right: 24px;
  background-position: right 10px top 52%;
}

.selector:focus, .selector:focus-visible{
  outline: none;
  border-color: transparent !important;
  box-shadow: 0 0 0 3px rgb(28, 63, 127);
}

@-moz-document url-prefix() {
  .selector {
    padding-left: 6px;
    padding-top: 5px;
  }
}

.movie-title{
  font-weight: bold;
  font-size: var(--title-size);
  margin: 0
}

.subtitle{
  font-weight: bold;
  font-size: 13px;
  color: #B3B3B3;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 16px 0 8px;
}