html {
	background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(83,51,246,1) 75%, rgba(100,82,250,1) 100%);
    background-repeat: no-repeat;
    height: 100vh;
}

body {
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/bbsemfundo.webp);
    object-fit: contain;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 280px;
    background-position-y: 25px;
    height: 100vh;
}

.vapour {
    position: absolute;
    display: flex;
    z-index: 1;
    padding: 0 20px;
    justify-content: center;
    top: 80px;
    left: calc(50vw - 75px);
}

.vapour span {
    position: relative;
    bottom: 80px;
    display: block;
    margin: 0 2px 150px;
    min-width: 8px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    animation: animate 6s linear infinite;
    opacity: 0;
    filter: blur(10px);
    animation-delay: calc(var(--v) * -0.5s);
}

@keyframes animate {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    50% {
        transform: translateY(-200px) scaleX(6);
    }
    95% {
        opacity: 0;
    }
    100% {
        transform: translateY(-500px) scaleX(12);
    }
}

h1 {
	top: 305px;
    position: absolute;
    color: #f8fa00;
    font-weight: bold;
    font-family: sans-serif;
    text-shadow: 1px 2px #ed3d80;
    font-size: 1.8em;
}

.button {
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid rgb(0, 0, 0);
    transition: none 0s ease 0s;
    box-shadow: rgb(0, 0, 0) 8px 8px 0px 0px;
    color: rgb(97, 5, 243);
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    height: 50px;
    position: absolute;
    width: calc(100vw - 40px);
    max-width: 425px;
    font-size: 16px;
}

.button-delivery {
    top: 380px;
}

.button-local {
    top: 450px;
}

.button-whatsapp {
    top: 520px;
}

.button-instagram {
    top: 590px;
}

.button img {
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    left: 10px;
}