body {
    font-family: 'Lora', Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background: #901E3E; */
    background: #3B060A;
    color: #FBF5DE;
}

main {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main p {
    margin: 0px;
    text-align: center;
    line-height: 30px;
}

main .icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 10px;
}

main .icons img {
    width: 40px;
}

section {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-weight: 600;
}

section .info {
    width: 300px;
}

section .info .info-title,
section .map .map-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

section .info .info-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section .info .info-items .item {
    background-color: chartreuse;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: #FBF5DE;
    color: #3B060A;
}

section .info .info-items .item div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

section .info .info-items .item div img {
    width: 30px;
}

section .map {
    width: 50%;
}

section .map iframe {
    width: 100%;
    border: 10px;
    height: 680px;
}

.telefon {
    text-decoration: none;
    color: #3B060A;
}

footer {
    background-color: #210306;
    padding: 10px 50px;
    border-top-left-radius: 200px;
}

footer p {
    font-style: italic;
}


.developer {
    text-decoration: none;
    color: #FBF5DE;
}

@media (max-width: 750px) {
    section {
        margin-top: 20px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    section .info {
        width: 80%;
    }

    section .map {
        width: 85%;
    }

    section .map iframe {
        width: 100%;
        border: 10px;
        height: 200px;
    }

    footer {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 50px;
        padding-right: 10px;
        border-top-left-radius: 100px;
    }
}