/*******************************
            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;
}


/*******************************
            PRIMJERI
*******************************/

.box {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin: 20px;
    background-color: rgb(15, 179, 233);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.rotate:hover {
    transform: rotate(20deg);
}

.scale:hover {
    transform: scale(1.5);
}

.translate:hover {
    transform: translate(20px, 20px);
}

.skew:hover {
    transform: skew(20deg, 10deg);
}

code {
    font-weight: bold;
    font-size: large;
}

.uvlaka1 {
    margin-left: 5px;
}

.uvlaka2 {
    margin-left: 20px;
}

.svjetloPlava {
    color: rgb(0, 123, 255);
}

.narancasta {
    color: rgb(255, 111, 0);
}

.zuta {
    color: rgb(202, 155, 0);
}

.zelena {
    color: rgb(94, 191, 94);
}

.ruzicasta {
    color: rgb(255, 1, 217);
}