@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Open+Sans:wght@300;400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: table;
    font-weight: 300;
    font-family: 'Lato', Arial, sans-serif;
    background-color: #000;
    -webkit-font-smoothing: antialiased;
}

.container {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.content {
    text-align: center;
    display: inline-block;
}

.title {
    font-size: 17vw;
    margin-bottom: 40px;
}

span {
    color: #4096EE;
    font-weight: 100;
}

.quote {
    font-size: 5vw;
    font-weight: 300;
}


@media(min-width: 500px) {
    .title {
        font-size: 96px;
    }

    .quote {
        font-size: 24px;
    }
}


@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:.2; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:.2; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:.2; } }

.fade-in {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:3.5s;
    -moz-animation-duration:3.5s;
    animation-duration:3.5s;
}