/* font */
@font-face {
  font-family: "Mic 32 New Rounded";
  src: url(../../assets/fonts/Mic32.otf) format("opentype");
}

/* html */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}



body {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  background: black;
  font-family: "Mic 32 New Rounded";
}

#video-container {
  height: 100%;
}

.status-container {
  color: var(--color-on-yellow);
  font-size: 24px!important;
  font-weight: bold;
  text-align: center;
  height: auto;
}

footer {
  display:flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10vh;
  justify-content:center;
  align-items:center;
  background-color: var(--color-dark-yellow);
}


#result-popup {  
  font-weight: bold;
  position:fixed;
  left:0;
  right:0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100px;
  height: auto;
  padding: 15px;  
  background: var(--color-dark-blue);
  text-align: center;
  box-sizing: content-box;
  font-family: "Mic 32 New Rounded";
}


/* The Modal (background) */
.modal {
  display: none;      /* Hidden by default */
  position: fixed;    /* Stay in place */
  z-index: 1;         /* Sit on top */
  justify-content: center;
  width: 100%;        /* Full width */
  height: 100%;       /* Full height */
  overflow: auto;     /* Enable scroll if needed */
  background-color: (var(--color-dark-blue)); 
}

/* Modal Content/Box */
.modal-content {
  background-color: var(--color-dark-blue);
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  width: 80%; /* Could be more or less, depending on screen size */
  color: var(--color-on-blue);
}

/* The Close Button */
.close {
  color: var(--color-on-blue);
  float: right;
  font-size: 32px;
  font-weight: bold;
}