body{
    background-image: linear-gradient(rgb(255, 253, 224),lightyellow);
}
main{
    display: flex;
    width: 100%;
    gap: 20px;
}
.left-side-profile{
    position: fixed;
    margin-top: 1px;
    width: 30%;
    height: 100%;
    display: flex;
    /* gap: 20px; */
    flex-direction: column;
    /* justify-items: space-evenly; */
    justify-content: space-evenly;
    padding-bottom: 40px;
    align-items: center;
    background-image: linear-gradient(orange,rgb(236, 200, 133));
}
.right-side-info{
    margin-top: 60px;
    margin-left: 35%;
    width: 60%;
    height: 100%;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.profile-pic{
    margin-top: 20px;
    width: 15vw;
    height: 15vw;
    /*height: 30%;*/
    border-radius: 60%;
    border: 2px solid black;

}

.name{
    font-size: 120%;
    font-weight: bold;
}

.announcement-info{
    width: 100%;
    height: 30rem;
    overflow-y: scroll;
    /* scrollbar-gutter: stable; */
    /* scrollbar-width: thin; */
    /* scroll-behavior: smooth; */
    /* scrollbar-base-color: aqua; */
    /* scroll-margin: 10px 1px 10px 2px; */
    /* scroll-padding: 10%; */
    /* scroll-margin-: 200px; */
    /* scroll-margin: 20px; */
    text-align: left;
    padding: 20px;
    border-radius: 20px;
    /* border: 2px solid black ; */
    background-color: white;
    box-shadow: 0px 0px 10px 2px rgb(0, 140, 255);
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}
.announcement-info::-webkit-scrollbar{
    width: 15px;
}

.announcement-info::-webkit-scrollbar-track{
    background: hsl(182, 85%, 79%);
    /* background: orange; */
    /* border: .1em solid hsl(0, 0%, 0%); */
    /* background: hsl(59, 100%, 50%); */
    border-radius: 100vw;
    margin-block: 0.5em;

}

.announcement-info::-webkit-scrollbar-thumb{
    /* width: 5px; */
    background: hsl(189, 100%, 50%);
    border-radius: 100vw;
}

.announcement-info::-webkit-scrollbar-thumb:hover{
    background: hsl(14, 100%, 50%);
    
}


::-webkit-scrollbar{
    width: 15px;
}

::-webkit-scrollbar-track{
    /* background: hsl(59, 100%, 50%); */
    background: yellow;
    /* background: hsl(59, 100%, 50%); */
    border-radius: 100vw;
    margin-block: 0.5em;
}

::-webkit-scrollbar-thumb{
    background: hsl(46, 100%, 50%);
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover{
    background: hsl(14, 100%, 50%);
    
}

.ct{
    /* z-index: 0; */
    /* overflow-y: ; */
    animation-name: autoscroll;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

.ct:hover{
    animation-play-state: paused;
    
}
@keyframes autoscroll{
    0%{

        /* transform: translateY(0%); */
    }
    100%{
        /* transform: translateY(-1000px); */
        transform: translateY(-10%);
    }

}

.study-material-info{
    /* width: 200px; */
    /* scroll-margin: 20px; */
    /* text-align: left; */
    
    padding: 20px;
    border-radius: 20px;
    /* border: 2px solid black ; */
    box-shadow: 0px 0px 10px 2px rgb(0, 68, 255);
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hackatho-ifo{
    /* width: 40%; */
    /* min-width: 100px; */
    padding: 20px;
    border-radius: 20px;
    /* border: 2px solid black ; */
    box-shadow: 0px 0px 10px 2px orchid;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.velow-announcement{
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
    /* flex-grow: 1; */
    /* flex-shrink: 1; */
}

.welcome-msg{
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 2px rgb(255, 217, 0) ;
    /* border: 2px solid black ; */
    background-color: white;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.study-material-ico{
    width: 30px;
}

.lower-part{
    /* border-radius: 7px; */
    display: flex;
    justify-content: center;
    align-items: center ;
    /* height: 1%; */

    gap: 10px;
    /* border-top: 1px solid black; */
    
}

.logout{
    background-color: red;
    border-radius: 5px;
    border: 2px solid black;
    color: white;
    padding: 4px;
}

.left-side-profile :hover{
    transform: scale(1.1);
    transform: translatey(-2px);
    /* cursor: pointer; */
}
.logout:hover{
    transform: scale(1.1);
    cursor: pointer;
}

.lower-part :hover{
    transform: scale(1.09);
    cursor: pointer;

}

@media screen and (max-width: 400px) {
    .left-side-profile{
        visibility: visible;
        position: relative;
        width: 100%;
        gap: 20px;
    }
    main{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    /*.left-side-profile{*/
    /*}*/
    .right-side-info{
        margin-left: 20%;
    }
}