* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 225, 233, 1) 100%);
}

header {
    text-align: center;

}

h1 {
    font-size: 1.4em;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    flex-direction: column;
    align-items: center;
    align-content: center;

    width: 100%;

    margin: auto;
    text-align: center;
    background: rgb(238, 174, 202);
    background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 225, 233, 1) 100%);

}

.slike {
    padding-top: 20px;
    height: 250px;
    width: 200px;
    box-shadow: 15px 15px 10px -15px #111;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

    justify-content: space-evenly;
    align-content: center;
    align-items: center;

}

.slike:hover {
    box-shadow: 10px 10px 10px -15px #111;



}

.slike img {
    height: 100px;
    width: 100px;
}

.indeksi {
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    align-content: center;

}


.indeks {
    color: rgb(62, 198, 202);
    width: 15%;
    text-align: center;
    cursor: pointer;


}

.indeksi_slika {
    font-size: 1.5em;
    color: #6062EB;
    border: 1px solid #B860EB;
    padding: 0 20px;
}

.index:hover {
    color: rgb(86, 143, 145);
}

#glavno_pitanje {
    margin-top: 2%;
}

#pitanja_bodovi {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2%;

}


#bodovi h2 {
    font-size: 1.4em;
}

a {
    text-decoration: none;
}

#pitanja {

    margin-top: 2%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgb(15, 15, 15, 0.5);
    background-color: rgb(255, 255, 255, 0.5);

}

input[type=radio] {
    margin: 5px;
}

input[type=text] {
    width: 100%;
    border-radius: 10px;
    height: 40px;
    font-size: 1.2em;
}

.pitanje {
    margin-bottom: 20px;
}

.uputa {
    padding: 20px;
    font-size: 1.5em;
}

.odgovori {
    font-size: 1.5em;

}



button {
    margin-top: 1%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #2a078c;
    font-size: 1em;
    border: none;
    border-radius: 10px;
}

table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px;
    cursor: pointer;
}




th,
td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

td:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

@media(max-width:1200px) {
    #pitanja_bodovi {

        flex-direction: column;


    }

    .slike {
        padding-top: 10px;
        height: 150px;
        width: 100px;
    }

    .slike img {
        height: 50px;
        width: 50px;
    }

    .indeks {
        width: 50px;

    }

    #pitanja {
        margin-top: 1%;

        padding: 1%;




        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
    }
}

@media(max-width:620px) {


    .slike {
        padding-top: 10px;
        height: 150px;
        width: 50px;
    }

    .slike img {
        height: 30px;
        width: 30px;
    }

    .indeks {
        width: 50px;

    }

    #pitanja {
        margin: 3%;
        padding: 1%;
        width: 100%;

        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
    }

    #pitanja_bodovi {
        width: 100%;
        justify-content: left;
        margin: 5%;
    }

    .pitanje {
        width: 100%;
        text-align: left;
    }

    .pitanja_odgovori {
        margin: 20%;
    }

    td img {
        width: "30px";
    }
}