#main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#kontakt-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.kontakt-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    transition: opacity .5s ease-out;
}

.kontakt-block h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

.kontakt-block p {
    font-size: 18px;
    width: 80%;
    margin-bottom: 0;
}

.kontakt-block p:nth-last-child(1) {
    margin-bottom: 18px;
}

.kontakt-block p span {
    font-weight: 600;
}

#maps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0 30px;
}

.maps {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transition: opacity .5s ease-out;
}

.maps h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
}

.maps iframe {
    width: 100%;
    border-radius: 25px;
}

@media only screen and (min-width: 1000px) {
    #kontakt-wrapper {
        height: 40vh;
        flex-direction: row;
        margin-top: 20px;
    }

    .kontakt-block p {
        width: 100%;
    }

    #maps-wrapper {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .maps {
        width: 45%;
    }

    iframe {
        height: 80vh;
    }
}