@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Gidole&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Pacifico&family=Playwrite+IN:wght@100..400&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/********************************
            OSNOVNO
********************************/

* {
    box-sizing: border-box;
}

body {
    font-family: "Gidole", sans-serif;
    background-color: #e4e4e4;
}

.attribution {
    font-size: 11px;
    text-align: center;
    margin-top: 15px;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}


/********************************
            GRID
********************************/

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    padding-top: 75px;
}


/********************************
            KARTICE
********************************/

.osoba {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.profilna {
    border-radius: 50%;
    width: 45px;
}

.osobaInfo {
    margin-left: 10px;
}

#ime {
    margin-bottom: -15px;
}


/********************************
            OSOBE
********************************/

#daniel {
    order: -1;
    grid-column-start: span 2;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #733fc8;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-image: url("../img/bg-pattern-quotation.svg");
    background-repeat: no-repeat;
    background-position: top right 100px;
}

#daniel .profilna {
    border: 3px solid #9e53c0;
}

#jonathan {
    order: -1;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #49556b;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#jeanette {
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #fff;
    color: #4e555e;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#patrick {
    grid-column-start: span 2;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #191f2d;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#patrick .profilna {
    border: 3px solid #9e53c0;
}

#kira {
    order: -1;
    grid-row-start: span 2;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #fff;
    color: #4e555e;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


/********************************
            RESPONSIVNOST
********************************/

@media screen and (max-width: 1024px) {
    .container {
        display: flex;
        flex-direction: column;
    }
}