@font-face {
  font-family: 'SevenSegment';
  src: url('.././fonts/Seven_Segment.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}

html, body{
  height: 100%;
  margin: 0;
}

.header{
  width: 95%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background-color: #446cbd;
  position: relative;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.logo{
  width: 200px;
  height: auto;
  margin: 20px;
}

.countdown{
  top: -45%;
  right: 50%;
  left: 50%;
  position: absolute;
  font-size: 100px;
  font-family: SevenSegment;
  color: white;
}

.menubtns{
  width: 140px;
  height: auto;
  margin: 20px;
  position: sticky;
  text-align: center;
  top: 0%;
  left: 90%;
}

.menubtn{
  width: 120px;
  height: 45px;
  margin: 5px;
  border-radius: 10px;
  background-color: #67cc3a;
  color: #f7f7f7;
  font-size: 16px;
  font-family: Roboto;
  border: none;
}

.inactivemenubtn{
  width: 120px;
  height: 45px;
  margin: 5px;
  border-radius: 10px;
  background-color: #a0a0a0;
  color: #f7f7f7;
  font-size: 16px;
  font-family: Roboto;
  border: none;
}

.cardboard{
  width: 95%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card{
  width: 200px;
  height: 275px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.cardfront{
  border: 4px solid white;
  position: absolute;
  backface-visibility: hidden;
  transform: rotateY(180deg);
}

.cardback{
  border: 4px solid white;
  backface-visibility: hidden;
  position: absolute;
}

.card.active{
  transform: rotateY(180deg);
}
.card.active > .backside {
  backface-visibility: hidden;
}
.card.flipped {
  transform: rotateY(180deg);
}

.footer{
  width: 100%;
  height: auto;
  bottom: 0%;
  position: relative;
  display: table-cell;
  background-color: #e29c28;
  color: white;
}

.eudisclaimer{
  width: 100%;
  display: flow-root;
}

.eudisclaimertxt{
  width: 50%;
  margin: 20px;
  position: relative;
  float: left;
  font-family: Roboto;
}

.euflag{
  width: auto;
  height: 66px;
  right: 0%;
  margin: 20px;
  float: right;
  position: relative;
}

.footerbtns{
  width: 100%;
  position: relative;
}

.footerbtn{
  width: auto;
  float: left;
  margin: 20px;
  margin-top: 10px;
  font-size: 18px;
  font-family: Roboto;
}

.footervue{
  width: auto;
  float: right;
  margin: 10px;
  margin-top: 10px;
  font-size: 18px;
  font-family: Roboto;
  position: relative;
  right: 0%;
}

.redtext{
  color: red;
}

.hide{
  display: none;
}
