/* Autor: Martin Ciljak */

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

#banner {
    height: 700px; /* Adjust as needed */
    background-image: url("../images/building-inside.WEBP"); /* Replace with your actual image path */
    margin-bottom: 40px;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #8888884f;
    text-align: center;
}

.image img {
    max-width: 100%;
    height: auto;
}

.text {
    max-width: 50%;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .block {
        flex-direction: column;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .text {
        max-width: 100%;
    }
    #banner {
        background-image: url("../images/IMG_1480.WEBP"); /* Replace with your actual image path */
    }
}
