@charset "utf-8";

@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;
}

section
{
    position:relative;
    display:flex;
    justify-content: center;
    align-items:center;
    min-height: 100vh;
    overflow:hidden;
    background: #002B5B;
}

section .text
{
    position:relative;
    text-align: center;
    color:#68aeda;
    margin:40px;
    max-width: 650px;
}

section .text span
{
    position : relative;
    display : inline-block; 
}

footer{
    background: #002B5B;
    text-align: center;
}

footer a {
    font-size: 0.5rem;
    color:#68aeda;
}