body, .page-content {
    padding: 0;
    margin: 0;
    height: 100%;
    color: #ffffff;
    background-color: black;
}

.menu {
    height: 100%;
    position: fixed;
    width: 20%;
    margin: 0;
    top: 0;
    border-right: 2px solid rgb(24, 24, 24);
}

.content {
    width: 50%;
    height: 100%;
    right: 0;
    margin-left: 25%;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-item {
    width: 90%;
    height: 50px;
    margin-left: 5%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.menu-item:hover {
    background-color: rgb(24, 24, 24);
}

.menu-item > a {
    margin-left: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 20pt;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#logout {
    
}

#menu-header {
    margin-left: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 30pt;
}

#content-header {
    font-size: 50pt;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 0;
}