*
{
    padding: 0;
    margin: 0;
    color: white;
    font-family: sans-serif;
}



body
{
    background-color: #001;
    display: flex;
}

.box
{
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 1s;

}
.img-box
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    flex-shrink: 0;
    
}

.img-box img
{
    width: 100%;
    transition: 0.8s ease-in-out 0.1s;

}

.profile
{
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile h2
{
    font-size: 20px;
    text-transform: capitalize;
}

.menu
{
    background-color: #123;
    width: 50px;
    height: 100vh;
    padding: 20px;
    overflow: hidden;
    transition: 0.5s;
}

ul 
{
    list-style: none;
    position: relative;
    height: 95%;
}

ul li a
{
    display: block;
    text-decoration: none;
    padding: 10px 7px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: 0.5;
}

ul li a:hover , .active ,.data-info .box:hover , td:hover
{
    background-color: #ffffff55;
}

.log-out
{
    position: absolute;
    bottom: 0;
    width: 100%;

}


.log-out a
{
    background-color: red;
}

ul li a i
{
    font-size: 30px;
}

.img-box img:hover
{
    transform: scale(1.1);
}

.menu:hover
{
    width: 260px;
}

.content
{
    width: 100%;
    margin: 10px;
}

.title-info
{
    background-color: rgb(4, 129, 255);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    margin: 10px 0 ;
}

 


.data-info
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.data-info .box
{
    height: 150px;
    background-color: #123;
    flex-basis: 150px;
    flex-grow: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.data-info .box i
{
    font-size: 40px;
}

.data-info .box .data
{
    text-align: center;
}

.data-info .box .data span
{
    font-size: 30px;
}

table
{
    width: 100%;
    text-align: center;
    border-spacing: 8px;
}

td , th
{
    background-color: #123;
    height: 40px;
    border-radius: 8px;

}

th
{
    background-color: #0080ff;
}

.hours , .Prerequisites

{

    padding: 6px;
    border-radius: 6px;

}

.hours
{
    background-color: green;
}

.Prerequisites
{
    background-color: red;
}

.content .data-info .box .data .cgpa 
{
    color: green;
}


sub
{
    position: relative;
    font-size: 20px;
    top: -5px;
}


.box:hover
{
    transform: translateY(-3px);
}


.box:hover i
{
    transform: scale(1.4);
}