/*******************************
            OSNOVNI CSS
*******************************/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: aliceblue;
}


/*******************************
            SADRŽAJ
*******************************/

.container {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

article {
    width: 900px;
    background-color: white;
    padding: 10px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

ul {
    margin-left: -25px;
}

ul li {
    list-style-type: "\2713";
    padding-left: 5px;
}


/*******************************
            PRIMJERI
*******************************/

code {
    font-weight: bold;
    font-size: large;
}

.uvlaka1 {
    margin-left: 5px;
}

.uvlaka2 {
    margin-left: 20px;
}

.uvlaka3 {
    margin-left: 40px;
}

.svjetloPlava {
    color: rgb(0, 123, 255);
}

.narancasta {
    color: rgb(255, 111, 0);
}

.zelena {
    color: rgb(94, 191, 94);
}

.ruzicasta {
    color: rgb(255, 1, 217);
}

.box {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin: 20px;
    background-color: rgb(9, 125, 188);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

/* PRIMJER: @keyframes | START */
@keyframes animacija {
    0% {
        background-color: red;
    }

    50% {
        background-color: blue;
    }

    100% {
        background-color: green;
    }
}

.keyframes {
    animation: animacija 6s ease-in-out infinite;
}

/* PRIMJER: @keyframes | END */

/* PRIMJER: transform | START */
@keyframes rotacija {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.transform {
    animation: rotacija 3s linear infinite;
}

/* PRIMJER: transform | START */