.panel{
    background-color: midnightblue;
    width:750px;
    height:auto;
    padding:10px;
    font-family:"Courier New";
    color: rgb(236, 236, 244);       
    
}

.image{
    width:300px;
    height:300px;
    border-radius:80px;
    border:dashed;
    transition: transform 0.3s ease;
    margin:10px

}

.image:hover {
  transform: scale(1.05);
}

.favorites{
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    
}

.favorites img:hover {
    transition: transform 0.3s ease;
  transform: scale(1.1);
}