html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    max-width: 100vw;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/background-elements.avif');
}

.partner-logo {
/*    width: 100px;
    max-height: 60px;*/
    margin: 4px;
}

.secondary-text {
    color: rebeccapurple;
}

.home-button {
    position: fixed;
    width: 50px;
    height: 50px;
    top: 80px;
    left: 20px;
    background-color: rebeccapurple;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.app-logo {
    height: 40px;
}

.error-text {
    border: 1px solid;
    margin: 10px 0px;
    padding: 5px 5px 5px 5px;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #D8000C;
    background-color: #FFBABA;
}

.nav-background {
    background-color: rgb(213, 207, 230);
    color: white;
}
.nav-training-background {
    background-color: rgb(213, 207, 230);
    color: white;
}

.cta-button {
    background-color: rebeccapurple;
    color:white;
    text-decoration: none;
    border-radius: 5px;
}

.card a {
    text-decoration: none;
}


@media (max-width: 640.98px) {
    .hero-text {
        font-size: 6vh;
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE10+/Edge */
        user-select: none; /* Standard */
    }
    .outer {
        padding: 8px;
        margin: auto;
    }

    .inner {
        /*        text-align: center;*/
        max-width: 90vw;
        padding: 16px;
        margin: 0 auto;
        border-left: thin;
        border-color: rebeccapurple;
    }
}

@media (min-width: 641px) {
    .hero-text {
        font-size: 8vh;
        -webkit-user-select: none; /* Safari */
        -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* IE10+/Edge */
        user-select: none; /* Standard */
    }
    .outer {
        padding: 16px;
        margin: auto;
    }
    .inner {
        text-align: center;
        max-width: 60vw;
        padding: 16px;
        margin: 0 auto;
        border-left: thin;
        border-color:rebeccapurple;
    }
}



