* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #111;
    color: #cbcbcb;
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

a,
Link {
    text-decoration: none;
    color: inherit !important;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-wrapper {
    position: relative;
    height: 100vh;
    padding: 50px 0;
}

.dot {
    color: #11e7b0;
}

.dot:nth-child(2) {
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot:nth-child(3) {
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0.5s;
}

.dot:nth-child(4) {
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

.dot:nth-child(5) {
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1.5s;
}

@keyframes dotFlashing {
    0% {
        color: #fff;
    }
    100% {
        color: #11e7b0;
    }
}

footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .05);
    ;
}