* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Anton";
  src: url("font/Anton-Regular.ttf") format("truetype");
}
.page {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.4rem;
}
.page img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  z-index: 1;
}
.page .content {
  position: relative;
  z-index: 2;
  /*display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;*/
  height: 100%;
  color: white;
  padding: 1.6rem 0.6rem 2rem 0.6rem;
  background-color: rgba(0, 0, 0, 0.4117647059);
}
.page .content .row_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 40rem;
  gap: 1rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page .content .row_header img.logo {
  width: 3rem;
  height: auto;
}
.page .content .row_header h1 {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  line-height: 2.4rem;
}
.page .content .main_text {
  font-family: sans-serif;
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.35rem;
  margin-top: 1rem;
  text-align: center;
}/*# sourceMappingURL=style_temp.css.map */