.vsechny_sekce {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.sekce {
    display: flex;
    flex-direction: column;
    gap: 1.5em;

    .nazev {
        font-weight: bold;
        font-size: 1.2em;
    }

    .items {
        display: flex;
        gap: 1em;
    }
}

.align-center {
    align-self: center !important;
}

.pop-one-subject {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
}
.img {
    background-color: #D7EEFF;
    height: 4em;
    width: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1em;
}

.img img {
    height: 2.5em;
    width: 2.5em;
}

.subject-name {
    font-size: 0.8em;
    color: black;
    text-align: center;
}

@media (max-width: 768px) {
    .items {
        display: grid !important;
        grid-template-columns: auto auto auto;
    }
    
}