*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: url(https://thefabricco.com/cdn/shop/products/di0946.jpg?v=1707737162&width=480) no-repeat center fixed;
    background-size: cover;
}
#wolverine {
    width: 150px;
    transition: all 1.4s cubic-bezier(.075,.82,.165,1);
    transition: ease-in-out;

}
#Tomato {
    width: 50px;
    transition: all 0.2s ease-in;
}
.move-right {
    transform: translateX(300px);
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 100;
}