
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

.separator {
    border: 1px white solid;
    margin: 2ch;
    flex: 0 0;
}


.center {
    display: flex;
    justify-content: center;
    align-content: center;

}

.logos {
    height: 4ch;
    width: max-content;
    margin-bottom: 2ch;

}

.logos img {
    height: 100%;
    margin: .5ch;
}


.bg-image {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    width: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-card {
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.contact p {
    white-space: pre-line;
}

.texts {
    display: flex;
}

.texts > div {
    flex: 1 0;
}

.contact {
    border-top: 1px white solid;
}

@media (max-width: 600px) {
    .texts {
        flex-direction: column;
    }
    .bg-card{
        top: 1ch;
        left: 1ch;
        bottom: 1ch;
        right: 1ch;
        width: unset;
        overflow: auto;
        transform: unset;
    }
    div.cta{
        font-size: 1ch; !important
    }
}

.pmc {
    color: #00c000
}

.mega {
    color: #559eea;
}

a.cta{
 text-decoration: none;
}

div.cta{
    color: #ffffff;
    background-color: #00bf00;
    border-color: #00bf00;
    border-radius: 4px;
    font-size: 2.3ch;
    padding: 1ch 3ch;
}
