@font-face {
    font-family: 'TitularBold';
    src: url('../fonts/TitularBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Page styles */
body {
    min-height: 100vh;
    background-color: #ffffff;
    /*display: flex;*/
    /*flex-direction: column;*/
    font-family: "TitularBold", Arial, Helvetica, sans-serif;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #efefef;
}
#homeLogo {
    cursor: pointer;
    line-height: 0;
}
#langSwitch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #b51946;
    border: 1px solid white;
    border-radius: 4px;
    padding: 4px 6px;
    color: white;
    cursor: pointer;
}
.brandLogo {
    width: 100%;
}
section#main-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    align-items: center;
    justify-content: space-evenly;
    background: #efefef;
}
#ctaHeader {
    font-size: 38px;
    color: white;
    padding: 10px 0;
    background: #b51946;
    text-align: center;
    width: 100%;
    font-weight: 500;
    box-sizing: border-box;
}
#app-wrapper {
    box-sizing: border-box;
    width: 100vw;
}

.importantInfo {
    font-size: small;
    color: #333333;
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto 10px;
    text-align: center;
}
footer {
    height: 60px;
    width: 100%;
    color: #FFFFFF;
    background-color: #b51946;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    text-align: center;
}
.footerText {
    font-size: 12px;
}
.footerText a:link, .footerText a:visited {
    color: #FFFFFF;
    text-decoration: none;
}
.footerText a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    #ctaHeader {
        font-size: 24px;
        padding: 10px 5px;
    }
    #app-wrapper {
        width: 100%;
    }
    footer {
        display: flex;
        height: 100px;
    }
}
