body {
    background: #f277a4;
    margin: 0;
}

a {
    text-decoration: none;
}

.outer-wrap {
    display: block;
    position: relative;
    width: 100%; 
}

.inner-wrap {
    position: absolute;
    width: 100%;
    max-width: 450px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;  
    display: flex;
    justify-content: center;
    align-items: center;  
}

.inner-wrap:before {
    content: 'TOUCH IT';
    position: absolute;
    top: 24px;
    text-transform: uppercase;
    color: #f6acc9;
    width: 100%;
    font-size: 60px;
    font-family: sans-serif;
    text-align: center;
}

.button-wrap {
    width: 150px;

    animation: pulse 2s 3s infinite;  
}


.fishcake {
    display: block;
    width: 100%;
    text-shadow: 1px 1px 30px #000;  
}

.fishcake img {
    display:block;
    margin: 0;
    width: 100%;
}

.ig-wrap {
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 32px;
    height: 32px;
    transform: translateX(-50%);
}

.ig-wrap .button span img {
    display: block;
    margin: 0;
    width: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    55% {
        transform: scale(1);
    }

    80% {
        transform: scale(1.15);
    }

    100% {  
        transform: scale(1);
    }
} 
