*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy";
}
html,body{
    height: 100%;
    width: 100%;
}
body{
    background-color: rgb(214, 242, 120);
    display: flex;
    align-items: center;
    justify-content: center;
}
#container{
    height: 450px;
    width: 350px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    position: relative;
}
#container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
}
#container #darkLove{
    font-size: 50px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    opacity: 0;
    transition:all ease 0.4s ;
}

#norm{
    font-size: 25px;
    cursor: pointer;
    color: #9e9797
}