.mittig {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

a.imp {
    color: white;
    text-decoration: none;
}

ul.stylish-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.stylish-list li {
    background: #e0e0e0;
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

ul.stylish-list li:hover {
    background: #d0d0d0;
}

ul.stylish-list li:before {
    content: '\2022'; /* Bullet point character */
    color: #ff6347;
    font-weight: bold;
    display: inline-block; 
    width: 1rem; /* Width of the bullet point */
    margin-right: 1rem;
    font-size: 1.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.zoom {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9);
}

.zoom-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}

.zoom-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 800px) {
    .mittig {
        padding: 0 1rem;
    }

    ul.stylish-list li {
        padding: 0.75rem;
    }
}

@media (max-width: 500px) {
    ul.stylish-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    ul.stylish-list li:before {
        width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
