a {
    color: black;
}

a:hover {
    color: black;
}

.dashboard-head{
    padding:10px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.dashboard-head h3 {
    color: white;
    font-size: 24px;
    text-transform: uppercase;
}

.dashboard-head .c_logout {
    background: transparent;
    border: none;
}

.dashboard-head .c_logout a .btn {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.dashboard-screen{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dashboard-sidebar{
    flex:2;
    height:100vh;
    padding:20px 10px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.dashboard-menu{

}

.dashboard-menu li{
    list-style: none;
    padding: 10px;
    color:black;
    border-radius:12px;
    margin-bottom:8px;
    transition: 1ms;
}

.dashboard-menu li:hover {
    border-bottom: 2px solid white;
    border-radius: 0;
}

.dashboard-menu li a{
    text-decoration:none;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.dashboard-body{
    background-color:#666;
    flex:10;
    height:100vh;
    padding:20px;
}