p {
    margin-bottom: 1.2rem;
}

/*.menuwelcome{
    border : 2px solid black;
}*/

.menuitem:hover {
    background-color: #0beedb;
    /* Change the background color on hover */
}

.menuitem {
    cursor: pointer;
}

body {
    margin: 0;
    padding: 0;
}

#toggle-menu {
    position: fixed;
    top: 10px;
    left: 5px;
    z-index: 99;
    background-color: white;
    width: 30px;
    height: 30px;
    border: 2px solid black;
}

#toggle-menu:hover {
    opacity: 0.33;
    cursor: pointer;
}

.menu {
    position: fixed;
    top: 40px;
    left: 5px;
    width: 200px;
    background-color: white;
    color: black;
    overflow: hidden;
    height: 0;
    transition: height 0.5s;
    z-index: 1;
}

.menu.expanded {
    height: auto;
    border: 2px solid black;
}

#menu-list {
    list-style: none;
    padding-left: 0;
    padding-top: 5px;
    margin: 20px 0;
    margin-top: 0;
}

#menu-list li {
    margin: 10px 0;
}

#menu-list li:hover{
    text-decoration: underline;
}

#menu-list a {
    text-decoration: none;
    color: black;
    display: block;
    padding-left: 7px;
}