* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    /* position: relative; */
    height: 100vh;
    background: linear-gradient(to bottom right, #971717 0, #e2bb02 100%);
}

.bubble-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bubble-container .bubble {
    position: absolute;
    bottom: -10rem;
    width: 4rem;
    height: 4rem;
    background-color: #f1f1f1;
    border-radius: 50%;
    opacity: .5;
    animation: rise 10s infinite ease-in;
}

.bubble-container .bubble-1 {
    width: 4rem;
    height: 4rem;
    left: 10%;
    animation: 8s;
}

.bubble-container .bubble-2 {
    width: 2rem;
    height: 2rem;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble-container .bubble-3 {
    width: 5rem;
    height: 5rem;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble-container .bubble-4 {
    width: 8rem;
    height: 8rem;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble-container .bubble-5 {
    width: 3.5rem;
    height: 3.5rem;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble-container .bubble-6 {
    width: 4.5rem;
    height: 4.5rem;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble-container .bubble-7 {
    width: 9rem;
    height: 9rem;
    left: 75%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble-container .bubble-8 {
    width: 2.5rem;
    height: 2.5rem;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 2s;
}

@keyframes rise {
    0% {
        bottom: -10rem;
        transform: translateX(0);
    }

    50% {
        transform: translate(10rem);
    }

    100% {
        bottom: 108rem;
        transform: translateX(-20rem);
    }
}

.content__container {
    padding-top: 30vh;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width: 576px) {
    .content__container {
        width: 540px;
    }
}

@media(min-width: 768px) {
    .content__container {
        width: 720px;
        padding-top: 10vh;
    }
}

@media(min-width: 992px) {
    .content__container {
        width: 960px;
    }
}

@media(min-width: 1200px) {
    .content__container {
        width: 1170px;
    }
}

@media(min-width: 1400px) {
    .content__container {
        width: 1320px;
    }
}

.content__container .content {
    color: #ffffff;
    text-align: center;
}

.content__container .content h1 {
    margin-top: 30%;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5rem;
}

@media(min-width: 768px) {
    .content__container .content h1 {
        font-size: 4rem;
    }

    .content__container .content p {
        font-size: 1.8rem;
    }
}

.content__container .content .counter {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.content__container .content .counter>div {
    width: 10rem;
    height: 10rem;
    border-radius: .5rem;
    border: .1rem solid #ffffff;
    font-size: 3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 1rem;
}

.content__container .content .counter>div .title {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    border-top: .1rem solid #ffffff;
}