/* We remove the margin, padding, and list style of UL and LI components */
#menuwrapper ul, #menuwrapper ul li{
    margin:0;
    padding:0;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
#menuwrapper ul li{
    background-color:#669727;
    border-bottom:solid 1px white;
    width:180px;
    cursor:pointer;
}

/* We apply the background hover color when user hover the mouse over of the li component */
#menuwrapper ul li:hover{
    background-color:#79b41e;
    position:relative;
}

/* We apply the link style */
#menuwrapper ul li a{
    padding:5px 15px;
    color:#ffffff;
    display:inline-block;
    text-decoration:none;
}




/* Clear float */
.clear{
    clear:both;
}

/* Automatische Silbentrennung ausschalten */
body,
p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-post-content,
.entry-content {
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
    hyphens: none !important;
    word-break: normal !important;
}

/*display: block; width: 100%; height: 100%;*/