nav {
    background-color: #DAA29E;
    padding: 1.25em;
    text-align: center;
}

.nav-container {
    position: relative;
    max-width: 71.875em;
    margin: 0 auto;
}

.nav-toggle {
    display: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 0.9375em;
    vertical-align: middle;
}

.emoji {
    font-size: 1.875em;
}

nav ul li a {
    text-decoration: dotted;
    font-size: 1.5625em;
    font-weight: bold;
    color: white;
    padding: 0.9375em;
    border-radius: 1.25em;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #f2d2cf;
    color: #DAA29E;
}

.logo {
    width: 2em;
    vertical-align: middle;
}

.hamburger {
    font-size: 1.875em;
    cursor: pointer;
    color: #DAA29E;
    display: none;
    position: absolute;
    top: 1.25em;
    right: 1.25em;
}

@media screen and (max-width: 71.875em) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #DAA29E;
        position: absolute;
        top: 3.75em;
        right: 1.25em;
        width: 14.375em;
        border-radius: 0.625em;
        padding: 0.625em 0;
        text-align: right;
    }

    nav ul li {
        display: block;
        margin: 0.625em 1.25em;
    }

    .hamburger {
        display: block;
    }

    .nav-toggle:checked+.hamburger+ul {
        display: flex;
    }
}

.emoji {
    font-size: 1.875em;
}

body {
    background-image: url(img/Hintergrund.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: "Amatic SC", sans-serif;
    color: #333;
    background-color: #DAA29E;
}

footer {
    text-align: center;
    color: white;
    background-color: #DAA29E;
    padding: 1em;
    width: 100%;
    position: fixed;
    bottom: 0;
}

.Startseite {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75em 1.25em;
}

.Startseite-img {
    width: 28.125em;
    border-radius: 1.5625em;
    box-shadow: 0 0 1.25em rgba(218, 162, 158, 0.4);
    animation: float 3s ease-in-out infinite alternate;
    margin-bottom: 0.3125em;
    margin-top: -1.875em;
}

.Startseite-button {
    font-size: 1.125em;
    padding: 0.75em 1.5em;
    background-color: #DAA29E;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: bold;
    border-radius: 1.875em;
    margin-top: 1.5625em;
}

.Startseite-button:hover {
    background-color: white;
    color: #DAA29E;
    box-shadow: 0 0 0.625em #DAA29E;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-0.625em);
    }
}

.Impressum {
    color: white;
    text-decoration: none; /*link nicht unterstrichen*/
    font-family: 'Amatic SC';
    font-size: 1em;
}