/* latin-ext */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Standard style */
html{margin-left: 15px;}
*, *::before, *::after {padding: 0px; margin: 0px; box-sizing: border-box;}
body {background-color: black; font-family: 'Poppins';}


#manPosterID {
  filter: grayscale(100%) brightness(100%);
  display: flex;
  align-self: center;
  justify-content: center;
  max-height: 30%;
  max-width: 80%;
  margin: 0 10% 0 10%;
  aspect-ratio: contain;
  object-fit: contain;
}

video {
  background-color: #ffffff;
}

/* Toggle lyd overlay*/
#audio-control {
  cursor:pointer;
  padding: 50px 100px;
  background:#A2D89B;
  color: #1b3b5f;
  font-size: 2em;
  border: 1px #79c76f outset;
  border-radius: 20px;
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0.8;
}
#audio-control:hover {
  opacity: 1;
  background-color: #80ca76;
}
#audio-control-blur {
  position: fixed;
  z-index: 2;
  left: 0; top: 0; right: 0; bottom: 0;
  height: 100%;
  width: 100%;
  background: #00000080;
  filter:blur(4px);
  -o-filter:blur(4px);
  -ms-filter:blur(4px);
  -moz-filter:blur(4px);
  -webkit-filter:blur(4px);
}

/* fullscreen container */
#full-container {
  position: fixed;
  height: 100%;
  width: 100%;
}

#video-player {
  display: none;
  height: 100vh;
  width: 100vw;
  aspect-ratio: 16/9;
}


/* Function overlay */
.top-overlay {
  position: absolute;
  display: flex;
  height: 100vh;
  width: 100vw;
  padding-left: 0.7%;
  padding-right: 0.7%;
  padding-bottom: 0.3%;
}
.func-overlay {
  width: 50%;
  align-self: flex-end;
  margin-bottom: 10px;
}



/* Knapper */

#fscreen-btn, #spg-btn{
  margin-left: 10px;
}
.btn {
  background-color: #A2D89B;
  color: #1b3b5f;
  border-radius: 23px;
  border: 1px solid #79c76f;  
  gap: 20px;
  font-size: 15px;
  padding: 7px 12px 7px 12px;
  opacity: 0.8;
  width: 200px;
}
.btn:hover{
  opacity: 1;
  background-color: #80ca76;
}



/* Break points */

@media (max-width: 1310px) {
  .btn {
    padding: 10px 15px 10px 15px;
    font-size: 13px;
    gap: 5px!important;
    width: 180px;
  }
  .func-overlay{
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  #audio-control{
    font-size: 1.5rem;
    padding: 3.2rem 5.2rem;
  }
}

@media (max-width: 1310px) {
  .btn {
    padding: 8px 12px 8px 12px;
    font-size: 10px;
    gap: 5px!important;
    width: 160px;
  }
  .func-overlay{
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  #audio-control{
    font-size: 1.5rem;
    padding: 3.2rem 5.2rem;
  }
}

@media (max-width: 717px) {
  .btn {
    padding: 6px 10px 6px 10px;
    font-size: 8px;
    gap: 5px!important;
    width: 140px;
  }
  .func-overlay{
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  #audio-control{
    font-size: 0.9rem;
    padding: 1.2rem 3.2rem;
  }
}

@media (max-width: 660px) {
  .btn {
    padding: 5px 9px 5px 9px;
    font-size: 6px;
    gap: 5px!important;
    width: 120px;
  }
  .func-overlay{
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  #audio-control{
    font-size: 0.9rem;
    padding: 1.2rem 3.2rem;
  }
}

@media (max-width: 450px) {
  .btn {
    padding: 5px 8px 5px 8px;
    font-size: 4px;
    gap: 5px!important;
    width: 100px;
  }
  .func-overlay{
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  #audio-control{
    font-size: 0.9rem;
    padding: 0.7rem 2.2rem;
  }
}