body {
    font-family: 'Comfortaa';
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../webfonts/Comfortaa-Light.woff2') format('woff2'),
        url('../webfonts/Comfortaa-Light.woff') format('woff'),
        url('../webfonts/Comfortaa-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../webfonts/Comfortaa-Regular.woff2') format('woff2'),
        url('../webfonts/Comfortaa-Regular.woff') format('woff'),
        url('../webfonts/Comfortaa-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../webfonts/Comfortaa-Bold.woff2') format('woff2'),
        url('../webfonts/Comfortaa-Bold.woff') format('woff'),
        url('../webfonts/Comfortaa-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

h1#appTitle {
    color: white;
    font-size: 80px;
    font-weight: bold;
    text-align: center;
}

h2#appFirstLine {
    color: white;
    font-size: 30px;
    line-height: 40px;
}

h2#appSecondLine {
    color: white;
    font-size: 18px;
    font-weight: 300;
}

#downloadButtonBlock {
    margin-top: 30px;
}
#secondDownloadButtonBlock {
    margin: 0;
}

#downloadButtonBlock #whiteDownloadButton,
#blackDownloadButton {
    width: 200px;
}

#confidentialityData {
    padding: 10px;
    background: white;
    color: black;
    text-align: justify;
}

#cta h2#downloadAppLabel {
    margin-bottom: 40px;
}
#footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer ul li {
    color: black;
}

@media screen and (max-width: 736px) {
    h2#appFirstLine {
        color: white;
        font-size: 30px;
        line-height: 35px;
    }

    h2#appSecondLine {
        line-height: 25px;
        margin-top: 35px;
    }

    #cta {
        margin-top: 1em;
    }

    #footer {
        padding: 2em 0;
    }
}

.subFeatureDescription {
    color: black;
}

.unselectable {
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}