header {
    width: 100vw;
    text-align: center;
    height: 50px;
}

main {
    align-self: center;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
}

#topHalf {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#bottomHalf {
    display: none;
    flex-direction: row;
    justify-content: center;
}

.destinationenContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#container1 {
    display: flex;
    flex-direction: column;
}

#container2 {
    display: flex;
    flex-direction: column;
}

#container3 {
    display: flex;
    flex-direction: row;

}

#map {
    width: 60vw;
}

a {
    color: none;
    text-decoration: none;
}

body {
    background-color: #303e2e;
}

.ortsButton {
    display: flex;
    flex-direction: column;
    background-color: #005A8C;
    border-color: whitesmoke;
    border-radius: 24px;
    border-width: 8px;
    border-style: solid;
    padding: 8px;
    margin: 10px;
    align-items: center;
    min-height: 100px;
    max-height: 20vh;
    aspect-ratio: 3/2;
    justify-content: center;
}

.ortName {
    font-family: "linotype-vectora", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 5px;
    color: whitesmoke;
    font-size: 20px;
    text-align: center;
}

.btnImg {
    max-height: 75%;
}

h1 {
    font-family: "eigerdals", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    color: whitesmoke;
    text-align: center;

}

.destinationenContent .karteDestination {
    width: 60vw;
    height: 40vw;
}

.infoBox {
    background-color: #005A8C;
    color: whitesmoke;
    border-color: whitesmoke;
    border-width: 10px;
    border-style: solid;
    border-radius: 30px;
    height: auto;
    min-width: 30vw;
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titelDestinationsinfo {
    font-family: "vectory", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}

.collageBild {
    max-height: 400px;
    margin: 10px;
    max-width: 90vw;
}

.collage {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.infoBoxTabelle {
    display: grid;
    height: 50%;
    width: 80%;
    grid-template-columns: 1fr 3fr;
    font-family: "vectory", sans-serif;
    font-size: 15px;
}

dt {
    font-weight: 700;
    padding-top: 5px;
}

dd {
    padding-top: 5px;
}

@media screen and (max-width: 1100px) {
    .destinationenContent {
        flex-direction: column;
    }

    .infoBox {
        width: 90vw;
    }

    .destinationenContent .karteDestination {
        width: 80vw;
        height: 60vw;
    }

    .infoBoxTabelle {
        width: 90%;
    }

    #topHalf {
        flex-wrap: wrap;
    }

    #container1 {
        order: 2;
    }

    #container2 {
        display: flex;
        flex-direction: column;
        order: 3;
    }

    #map {
        width: 100vw;
        order: 1;
    }

}