@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0f0f0f;
    overflow: hidden;
}

section .text {
    position: relative;
    text-align: center;
    margin: 40px;
    max-width: 850px;
}

section .text .green {
    color: #1d9612;
}

section .text .blue {
    color: #1a74be;
}

section .text .yellow {
    color: #d8e709;
}

section .text .red {
    color: #e70909;
}

section .text .orange {
    color: #e76209;
}

section .text span {
    position: relative;
    display: inline-block;
}