* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    display: grid;
    height: 100%;
    place-items: center;
    background-color: #ecf0f1;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content button {
    border: 0;
    outline: 0;
    font-size: 24px;
    padding: 10px 30px;
    background: rgb(54, 148, 248);
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 7px;
    margin-left: 300px;
    font-family: 'Lucida Sans' sans-serif;
}

.emoji {
    width: 100%;
    height: 70px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ecf0f1;
    border-radius: 50px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1),
        0 -5px 7px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.emoji img {
    display: block;
    width: 100px;
    transition: all 0.4s;
}

.emoji img:hover {
    transform: translateY(-10%) scale(1.2);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.item {
    mix-blend-mode: multiply;
}

.wrapper:hover .emoji {
    visibility: visible;
    opacity: 1;
}