
/* rest css */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 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 */
body {
  background-image: url(../../assets/img/background.svg);
  background-size: cover;
  background-repeat: no-repeat;

  font-family: "Mic 32 New Rounded";
}

/* link */
a:link {
  text-decoration: none!important;
}

a:visited {
  text-decoration: none!important;
}

a:hover {
  text-decoration: none!important;
}

a:active {
  text-decoration: none!important;
}

a {
  text-decoration:none!important;
}



.flex-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;  
}

/* button big background */
.tile-yellow {
  padding: 10px;
  margin-left: 70px;
  margin-right: 70px;
  background: linear-gradient(
    270deg,
    rgba(255, 221, 75, 1) 0%,
    rgba(251, 187, 3, 1) 100%
  );
  border-radius: 10px;
}
.tile-blue {
  padding: 10px;
  margin-left: 70px;
  margin-right: 70px;
  margin-top: 40px;
  background: linear-gradient(
    63deg,
    rgba(50, 132, 167, 1) 0%,
    rgba(75, 179, 189, 1) 100%
  );
  border-radius: 10px;
}

/* button big */
.tile-button-big {
  max-width: 500px!important;
}

.tile-icon-portal {
  display: inline-block;
  mask-size: cover;
  background: var(--color-on-yellow);
  width: 25vw;
  height: 20vw;
  max-width: 280px;
  max-height: 220px;
}

.tile-icon-scan {
  display: inline-block;
  mask-size: cover;
  background: var(--color-on-blue);
  width: 40vw;
  height: 20vw;
  max-width: 500px;
  max-height: 220px;
}


/* buttons small */
.tile-button-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12vw;
  height: 12vw;
  /* border: 2px solid black; */
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
  margin-bottom: 0px;
  padding: 0px;
  max-width: 100px;
  max-height: 100px;
}

.tile-icon-small {
  background: var(--color-on-yellow);
  width: 10vw;
  height: 10vw;
  max-width: 100px;
  max-height: 80px;
}



.tile-content-yellow {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: "Mic 32 New Rounded";
  color: var(--color-on-yellow);
}

.tile-content-blue {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-family: "Mic 32 New Rounded";
  color: var(--color-on-blue);
}


.tile-small-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 5vw;
  height: 5vw;
  min-width: 64px;
  min-height: 64px;
  /* border: 1px solid black; */
}




.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.bottom-button-container {
  margin-top:20px;
  display: flex;
  justify-content: center;
}


.logo {
  content: url(../../assets/img/logo.svg);
  width: 77vw;
  max-width: 440px;
  margin-top: 20px;
  margin-bottom: 50px;
}

footer {
  display:flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  justify-content:center;
  align-items:center;
}

.copyright {
  font-weight: bold;
  font-family: "Mic 32 New Rounded";
  color: var(--color-on-yellow);
  text-align: center;
}




/* html,
body {
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  height: 100%;
  background: #ffffff;
  font-family: Roboto, sans-serif;
} */

