.badge{
    position: relative;
    top: -123px;
}
.card:hover{
    border: 2px purple solid;
}
.started{
    background-color: rgb(148, 76, 148);
    color: black;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 8px 8px 20px purple;
}
.started:hover{
    background-color: white;
    color: rgb(63, 17, 105);
    border: 2px solid black;
}
.explore{
    background-color: white;
    color: black;
    padding: 15px;
    box-shadow: 2px 2px 20px black;
    border-radius: 25px;
}
.explore:hover{
    background-color: white;
    color: purple;
    border: 2px solid white;
}
.pic{
    width: 650px;
    position: relative;

transition: all 2s;    
}
.pic:hover{
    width: 700px;
    transform: scale(1.1);
}