/* .list{
    background-color: black;
    color: white;
}
.active{
    list-style: none;
    margin-left: 10px;
    border: 1px solid blue;
} */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px solid blue; */
    height: 100vh;
}
.sec1{
    /* border: 1px solid black; */
    height: 60vh;
    width: 30%;
    box-shadow: 0 0 10px black;
}
.sec1 .divimg{
    /* border: 1px solid red; */
    height: 10%;
}
.divlabel{
    /* border: 1px solid rgb(2, 51, 2); */
    height: 5vh;
    width: 25%;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    float: right;
    margin-top: 3px;
}
.divlabel:hover{
    background-color: rgba(2, 51, 2, 0.5);
}
.cardbody{
    /* border: 3px solid black; */
    height: 90%;
}
.cardimg{
    /* border: 2px solid yellow; */
    height: 85%;
}
.cardtext{
    /* border: 2px solid blue; */
    height: 15%;
    text-align: center;
    padding-top: 3px;
}
.newimg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
