.index #menuitems a.index,
#menuitems a.index:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.plana #menuitems a.plana,
#menuitems a.plana:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.cottage #menuitems a.cottage,
#menuitems a.cottage:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.about #menuitems a.about,
#menuitems a.about:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.contact #menuitems a.contact,
#menuitems a.contact:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

#navigation {
    width: 100%;
    background: rgb(12, 12, 12);
    position: sticky;
    overflow: hidden;
    top: 0;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: Proxima Nova, Helvetica, Proxima-Nova-Fallback, sans-serif;
    font-weight:400
}

#navigation label,
#hamburger {
    display: none;
}

#menuitems {
    display: flex;
    float: right;
}

#menuitems a {
    /* 100% / 5 tabs = 20% */
    padding: 10px;
    color: white;
    text-decoration: none;
    text-align: center;
}

/*#menuitems a:hover {
    background: #401408;
}*/


nav {
    z-index: 9999;
}

@media screen and (max-width: 768px) {
    #navigation label {
        display: inline-block;
        color: white;
        /*background: #a02620;*/
        font-style: normal;
        font-size: 1.2em;
        padding: 10px;

        position: relative;
        left: 95%;
        transform: translate(-95%);
    }

    #menuitems a {
        box-sizing: border-box;
        display: block;
        min-width: 100%;
        border-top: 1px solid #333;
        float: left;
        text-align: center;

    }

    #menuitems {
        display: none;
        width: 100%;
    }

    #navigation input:checked~#menuitems {
        display: block;
    }
}

html,
body {
    padding: 0;
    margin: 0;
}
