/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');

body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #000;
  color: #fff;
  height: 90vh !important;
  width: 100vw !important;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.container_signage {
  margin: 0;
  padding: 0;
  height: 100% !important;
  width: 100% !important;
  overflow: hidden;
  display: flex; 
  flex-direction: row; 
  justify-content: space-between;
}

.media-bar {
  flex: 1;
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
}

#qr {
  background-image: url(qr.php);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  background-color: #0072BC;
  display: flex;
  align-items: center;
}

#qr span {
  font-size: 6.5vh;
  text-align: left;
  padding-left: 2vh;
}

.container_mobile {
  margin: 0;
  padding: 0;
  min-height: 90vh !important;
  width: calc(100vh * 0.56) !important;
  overflow: hidden;
  margin: auto auto;
}

.header-bar {
  height: 7vh !important;
  background-color: #070F26;
  background-image: url(lib/logo.png);
  background-repeat: no-repeat;
  background-size: auto 4vh;
  background-position: 2vh center;
  line-height: 7vh;
  font-size: 2.5vh;  
  padding-right: 2vh;
  text-align: right;
}

.image-bar {
  height: 17vh !important;
  background-image: url(lib/image_1.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  font-size: 5vh;
  padding: 2vh;
}

.image-bar::first-line {
  font-weight: bold;
}

.button-bar {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 2vh;
}

.buttonText {
  font-size: 1.2vh;
  text-align: center;
  padding: 2vh !important;
  align-self: flex-end;
}

.button {
  background-color: #0072BC;
  background-image: url(lib/play.png);
  background-repeat: no-repeat;
  background-size: auto 8vh;
  background-position: 2vh center;
  line-height: 10vh;
  font-size: 3vh;  
  width: 11vh;
  border-radius: 1vh;
  font-weight: bold;
  text-align: right;
  padding-left: 6vh;
  padding-right: 2vh;
}

.button_simple {
  background-color: #0072BC;
  line-height: 10vh;
  font-size: 3vh;  
  width: auto;
  border-radius: 1vh;
  font-weight: bold;
  text-align: right;
  padding-left: 2vh;
  padding-right: 2vh;
}

.content-bar {
  padding: 2vh 1vh 0 1vh;
  flex: 1;
}

.content-bar div {
  font-size: 2vh;
  text-align: center;
  padding: 1.5vh 1vh 1vh 1vh;
}

#welcome {
  background-color: #0072BC;
  font-size: 2vh;
  line-height: 3vh;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2vh;
}

#result {
  font-size: 3vh;
  font-weight: bold;
  text-align: center;
  margin: 2vh 0 2vh 0;
}

#resultMs, #resultFinishMs {
  font-size: 10vh;
  color: #F4B02A;
  font-weight: bold;
  text-align: center;
}

#personalBest, #personalRecord {
  font-size: 2vh;
  color: #F4B02A;
  font-weight: bold;
  text-align: center;
}

#textSecured  {
  font-size: 2.5vh;
  color: #0072BC;
  font-weight: bold;
  text-align: center;
}

#textVulnerable  {
  font-size: 2.5vh;
  color: #FF0000;
  font-weight: bold;
  text-align: center;
}

#textWatch  {
  font-size: 5vh;
  text-align: center;
}

#textClick  {
  font-size: 3vh;
  text-align: center;
}

#leaderboardHeadline {
  font-size: 3vh;
  font-weight: bold;
  text-align: left;
  margin-bottom: 2vh;
  color: #F4B02A;
}

#daily {
  width: 100% !important;
}

#daily td {
  padding: 1vh;
  font-size: 3vh;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}

#daily tr td:last-of-type {
  text-align: right;
  color: #F4B02A;
}

#daily tr td:first-child {
  width: 3vh;
}

video {
  width: 100% !important;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.linedBackground {
  background-color: #070F26;
  background-image: url(lib/starform.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}

input[type="text"],
input[type="email"] {
  width: 90%;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 2vh;
  padding: 1vh;
  margin: 1vh 1vh;
}

input:focus {
  outline: 2px solid #0f0;
}

.hidden {
  display: none;
}

@media (orientation: portrait) {

  .container_mobile {
    height: 100% !important;
    width: 100% !important;
    overflow: hidden;
    margin: auto auto;
  }

  .media-bar {
    display: none;
  }

}

@media (orientation: landscape) {


}