<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.priem{
    margin: 2% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%;
    animation: fadein 0.7s ease-in-out;
    text-align: justify;
}

.priem h3{
    text-align: center;
    margin: 2% auto;
}

.priem p{
    font-size: 18px;
    font-weight: 600;
    margin: 2% 0;
    text-align: left;
}

.button-link {
    border: none;
    margin: 3% 55px;
    padding: 15px 20px;
    background-color: #002855;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    /*transition: border, background-color 0.7s ease-in-out;*/
    transition: all 0.3s ease-in-out;
}
.button-link:hover{
    border: 1px solid #002855;
    color: black;
    background-color: transparent;
}

.info{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@keyframes fadein {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}</pre></body></html>