html, body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.mainmap {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 2.5em;
    left: 0;
    right: 0;
    bottom: 0;
}

.mainlogo {
    color: purple;
    font-size: 1.2em;
    font-weight: 900;
    padding-left: 2em;
    font-family: sans-serif;
}

header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: orange;
    top: 0;
    left: 0;
    height: 2.4em;
    width: 100%;
    font-size: 1.1em;
    border-bottom: 1px solid #E2E8F0;
}

header ul {

}

header li {
    color: #D23223;
    list-style: none;
}

header a {
    color: #D23223;
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.navmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navmenu img {
    height: 1em;
}

nav li {
    margin-left: 1.5rem;
}

.hamburger {
    display: none;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: purple;
}

.eventname {
    color: white;
}
.eventdate {
    color: white;
    font-size: 0.7em;
}

main {
    padding: 1em;
}

@media only screen and (max-width: 768px) {
    .navmenu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: orange;
        width: 98%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 9000;
    }

    .navmenu.active {
        left: 1%;
    }

    nav li {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.commentedstep {
    background: yellow;
}
