body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

* {
    box-sizing: border-box;
}

section {
    height: 100vh;
    display: flex;
    position: relative;
    padding: 10px;
}

.container {
    max-width: 1140px;
    margin: auto;
}

p {
    line-height: 1.5;
    font-size: 18px;
    margin-top: 0;
}

.mb-2 {
    margin-bottom: 8px;
}

.text-center {
    text-align: center;
}

.font-weight-bold {
    font-weight: bold;
}

.title {
    font-size: 22px;
}

.dots {
    position: relative;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #151922;
    color: #151922;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
    margin: 0 auto 18px;
}

.dots::before, .dots::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.dots::before {
    left: -20px;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #151922;
    color: #151922;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.dots::after {
    left: 20px;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    background-color: #151922;
    color: #151922;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dotFlashing {
    0% {
        background-color: #151922;
    }
    50%,
    100% {
        background-color: #CCD2E0;
    }
}

@media (min-width: 768px) {
    section {
        padding: 25px 20px;
    }

    .title {
        font-size: 28px;
    }

    p {
        font-size: 20px;
    }

    .dots {
        width: 20px;
        height: 20px;
    }

    .dots::before {
        left: -25px;
        width: 20px;
        height: 20px;
    }

    .dots::after {
        left: 25px;
        width: 20px;
        height: 20px;
    }
}