body {
    background: #fff;
    margin: 0;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transition: all 500ms ease;
}

.loader img {
    width: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.loading {
    height: 100vh;
}

footer {
    margin-top: 60px;
    padding-bottom: 10px;
}

footer .linkovi {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}
footer a {
    font-family: "Pacifico", serif;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 500ms ease;
}

footer a:hover {
    color: #D4AF37;
}

@media only screen and (min-width: 992px) {
    footer .linkovi {
        flex-flow: row;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
}