/* Stile für die Neuseelandreise */

/* Google Fonts laden */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Roboto:wght@300&display=swap');



body {
    background-color: #eeeeee;
    font-family: 'Open Sans', sans-serif;
}

main p {
    font-family: 'Roboto', sans-serif;
}

header {
    text-align: center;
}

img.banner {
    width: 100%;
}

img.user {
    border-radius: 50%;
    margin-top: -50px;
}

main {
    background-color: white;
    max-width: 1024px;
    margin: auto;
}

article {
    padding: 1em;
}

#map {
    width: 100%;
    height: 600px;
    border: 1px solid gray;
}

article p {
    text-align: justify;
    line-height: 1.2em;
}

article figure img {
    width: 100%;
}

a {
    color: black;
}

footer {
    border-top: 1px solid black;
    padding: 1em 2em 3em 2em;
}

footer .back {
    float: left;
}

footer .next {
    float: right;
}

.shadow {
    box-shadow:
        0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.etappenLink {
    background: white;
    border: 1px solid black;
    padding: 0.5em;
    width: 2em;
    text-align: center;
    margin-top: 0.5em;
    display: inline-block;

}
.etappeAktuell{
    background: silver;
    color: white;
    text-decoration: none;
    pointer-events: none;
}