html {
    background: url(/background.svg) no-repeat 50% fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    width: 100vw;
    height: 100vh;
}
body {
    display: flex;
    justify-content: center;
    height: 100%;
}
img {
    max-width: 100%;
    display: block;
}
body, html {
    font-family: Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    line-height: 1.6;
    font-size: 18px;
    margin: 0;
    padding: 0;
}
.landpage_midPanel {
    flex-grow: 3;
    display: flex;
    width: 100vw;
    align-items: center;
    flex-direction: row;
}
.thanks {
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 32px;
    font-weight: 600;
    color: rgb(50, 49, 48);
    display: block;
    margin-bottom: 20px;
}
.text {
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 400;
    color: rgb(50, 49, 48);
    display: block;
}
.footer {
    padding: 20px;
    font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 700;
    color: rgb(50, 49, 48);
}
.footer-light {
    font-weight: 400;
    display: inline;
    
}
.footer-strong {
    display: inline;
}
@media screen and (max-width: 767px) {
    .landpage_midPanel {
        flex-grow: 1;
        flex-direction: column;
        text-align: center;
    }
}