.pravila 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.5s ease-in-out;

    &:hover {
        border: 3px solid #002855;
        color: black;
        background-color: transparent;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.pravila {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    animation: fadein 0.7s ease-in-out;
}

.pravila h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pravila section {
    margin-bottom: 20px;
}

.pravila h2 {
text-align: center;
    text-transform: uppercase;
}

.pravila ul {
    list-style-type: decimal;
    padding-left: 20px;
    align-items: center;
    display: grid;
    justify-content: center;
    text-align: left;
}

.pravila li {
    margin-bottom: 5px;
}