/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #1d3b6f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    width:100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  display: block;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  font-weight: normal!important;
  font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    padding: 0;
    margin: 0;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.bodyWrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    max-width: 450px;
    margin:0 auto;
    padding-bottom:3em;
}

.bodyWrapper>header>h1{
    font-weight: 100;
}
header .qrLogoContainer{
    height: 7.4em;
    text-align:right;
}
header>a{
    display:block;
    width: 100%;;
}
header{
    padding:2em 0em 1em 0em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width:100%;
}
header hgroup{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.2em;
    width:100%;
}
header hgroup h1{
    font-size: 3em;
}
header hgroup img{
    margin-bottom:.5em;
    height:7em;
}
main{
    width: 100%;
    text-align: center;
    position:relative;
}
main>p{
    margin-bottom: 1em;
}
.bodyWrapper{
    transition: all 600ms;
    filter: blur(0em) opacity(1);
}
.bodyBlur{
    filter: blur(3em) opacity(0.5)!important;
}

.badge{
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 0.2em 0.6em;
    border-radius: 0.5em;
    font-size: 0.85em;
    box-shadow: 0 0 .1em rgba(0, 0, 0, .9);
}
