*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    background: #7d2ae8;
    font-family: 'Segoe UI';
}

img {
    max-width: 240px;
    border: 3px solid white;
    border-radius: 10px;
    margin-right: 15px;
}

.lista-naslovnih-brojeva-god01{
    margin-top: 70px;
    margin-left: 60px;
    margin-right: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
            
}

.text-box {
    color: white;
    /*padding: 20px;*/      /*DODATI AKO ŽELIM ONAJ EFEKT ODMAKNUTOG POKRIVANJA*/
    min-height: 450px;
    position: relative;
    display: inline-block;

}

.text-box h4 {
    max-width: 240px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.text-box p {
    max-width: 240px;
    font-size: 16px;
    text-align: center;
}

.top-img{
    position: absolute;
    max-width: 240px;
    left: 0;
    top: 0;
    opacity: 0;
    transition-delay: 0.4s;
    transition-duration: 1.4s;
}

.top-img:hover{
    opacity: 1;
}

header{
    width: 100%;
    padding-top: 40px;
    font-size: 24px;
    text-align: center;
    color: white;
    font-weight: 370;
}

#om-za-om-str{
    font-size: 64px;
    font-weight: 240;
}

a {
    text-decoration: none;
    color: white;
}

footer{
    width: 100%;
    padding-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: white;
    font-weight: 480;
}


@media(max-width: 980px){

    header {
        font-size: 20px;
    }

    header p{
        width: 90%;
        margin-left: 5%;
    }

    #om-za-om-str{
        font-size: 50px;
        font-weight: 240;
    }
}





 
 
