body {
  display: flex;
  flex-flow: column;
  height: 100vh;
  width: 100vw;
  font-family: Inter, Helvetica Neue, sans-serif;
  font-size: 10px;
  color: #353c52;
  background: linear-gradient(rgba(255, 171, 0, 0.2), rgba(0, 102, 179, 0.2)),
    url("../img/background-image-blurred.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  /*backdrop-filter: blur(5px) opacity(1);*/
}

body * {
  z-index: 2;
}

.welcome {
  margin: auto;
  text-align: center;
}

.welcome .logo {
  overflow: hidden;
  height: 10rem;
}

.welcome .logo img {
  height: 100%;
}

.welcome .blurb {
  font-weight: 600;
  margin-top: 1rem;
  font-size: 2rem;
  color: #0066b3;
}

.footer {
  display: flex;
  flex-flow: row;
  justify-content: center;
  gap: 50px;
  color: white;
  font-size: 1.6em;
}

.background {
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 0;
}

/*@supports not (backdrop-filter: blur(5px)) {*/
/*  @supports (filter: blur(5px)) {*/
/*    .res-initialisation-modal ~ * {*/
/*      transition: filter 0.3s ease-in-out;*/
/*    }*/

/*    .res-initialisation-modal.active ~ * > * {*/
/*      filter: blur(5px);*/
/*    }*/
/*  }*/
/*}*/
