.priem{
    margin: 2% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    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: justify;
}

.priem a{
    color: #000;
    font-weight: 600px;
    font-size: 18px;
}

.priem ul{
    width: 80%;
}

.priem ul li{
    margin: 1% 0;
    font-size: 18px;
    font-weight: 600;
}

.priem ul li a{
    color: black;
    font-weight: 600;
}

@keyframes fadein {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}