* {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

body {
    width: 100%;
    height: 100vh;
    background-color: #f4eadc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

img {
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    max-height: 80vh;
    max-width: 80vw;
    -webkit-animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top;
    animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top
}

button {
    background: #110e0c;
    color: #fff;
    outline: 0;
    border: none;
    font-size: 2rem;
    font-family: 'Times New Roman', Times, serif;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 60px
}

@-webkit-keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

.shadow {
    position: absolute;
    width: 150px;
    height: 50px;
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    filter: blur(2px);
    animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top;
    bottom: 0;
    -webkit-animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top
}

@-webkit-keyframes shadow {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes shadow {
    0% {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@media screen and (max-width:767px) {
    .container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column
    }
    img {
        background-repeat: no-repeat;
        background-position: center;
        height: auto;
        max-height: 90vh;
        max-width: 90vw;
        -webkit-animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top;
        animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top
    }
    button {
        background: #110e0c;
        color: #fff;
        outline: 0;
        border: none;
        font-size: 2rem;
        font-family: 'Times New Roman', Times, serif;
        padding: 12px 24px;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 400;
        margin-top: 25px;
        margin-bottom: 60px
    }
    .shadow {
        position: absolute;
        width: 130px;
        height: 50px;
        background: rgba(0, 0, 0, .2);
        border-radius: 50%;
        filter: blur(2px);
        animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top;
        bottom: -10px;
        -webkit-animation: 1.5s cubic-bezier(.25, .46, .45, .94) both slide-in-top
    }
}