.umovi{
    margin: 5% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    animation: fadein 0.7s ease-in-out;
}

.umovi h3{
    text-align: center;
    margin: 0.5% auto;
}

.umovi p{
    font-size: 18px;
    font-weight: 600;
    margin: 1% 0;
}

.umovi ul{
    width: 80%;
}

.umovi ul li{
    margin: 1% 0;
    font-size: 18px;
    font-weight: 600;
}

.umovi button{
    border: none;
    margin: 3% auto;
    padding: 15px 20px;
    background-color: #002855;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    transition: border, background-color 0.7s ease-in-out;
    &:hover{
        border: 3px solid #002855;
        color: black;
        background-color: transparent;
    }
}

@keyframes fadein {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}