
::-webkit-scrollbar-track{
    background-color: rgb(1, 24, 24);
      border-radius: 10px;
}

::-webkit-scrollbar-thumb{
    background-image:linear-gradient(to right,rgb(134, 115, 4));
    border-radius: 10px;
}

body{
    margin:0;
    padding: 0;
    background-color: rgba(141, 139, 139, 0.918);
    overflow: hidden;
    width:100vw;
    height:100vh;
    display:flex;
    align-items: center;
    justify-content: center;
}

.flex-container{
    width:24%;
    max-height: 60%;
    background-image: linear-gradient(to  top,blue,cyan);
    border-radius: 10px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    margin: auto;
    padding: 2.5%;
}

.flex-item{
    width:98%;
    max-width: 100%;
    background-color: white;
    border: 1px solid rgba(60,60,60,0.2);
    background-color: rgba(14, 13, 13, 0.2);
    border-radius: 10px;
    margin:0% 2%;
    text-align: center;
    padding: 2%;
    flex-shrink:0;

}

    img{
    border-radius: 50%;
    width:9vw;
    height:9vw;
    outline: 3px solid black;
    outline-offset: 5px;
    margin-top: 3vw;
}


 ::-webkit-scrollbar {
height: 8px;
}
.header{
    font-family: Poppins;
    margin-top:2vw;
    margin-bottom: 0%;
}
.section{
    font-family: Montserrat;
    color:white;
     text-align: center;
     margin:4% 2vw 20%;
    width:19vw;
    overflow-y:hidden;
    line-height: 1.5;
    padding:2%
}
@media screen and (min-width:800px){
    .header{
    font-size:1.4rem;
    }
    .section{
     font-size:1rem;
    }
}

@media screen and (min-width:600px) and (max-width:799px){
    .header{
    font-size:0.8rem;
    }
    .section{
     font-size:0.8rem;
    }
}
@media screen and  (max-width:599px){
    .header{
    font-size:12px;
    }
    .section{
     font-size:12px;
    }
}








