/* ---- reset ---- */

body {
    margin: 0;
    font-family:  "Lato", sans-serif;
}

canvas {
    display: block;
    vertical-align: bottom;
}

/* ---- particles.js container ---- */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1b0727;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/* */
.loader{
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: fadeOut 1000ms ease-in 500ms forwards;
    -webkit-animation: fadeOut 1000ms ease-in 500ms forwards;
}

.wrapper{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 2;
}
.title{
    color: #fff;
    font-weight: 100;
    line-height: 35vh;
    font-size: 48px;
    margin: 0;
    text-align: center;
    opacity: 0;
    transition: all 200ms linear 0s;
    -webkit-transition: all 200ms linear 0s;
    animation: fadeIn 2000ms ease-in-out 800ms forwards;
    -webkit-animation: fadeIn 2000ms ease-in-out 800ms forwards;
}

@media (min-width: 600px) {
    .title{
        font-size: 15vh;
    }
}

@keyframes fadeOut {
    from{
        opacity: 1;
        transform: scaleY(1);
    }
    to{
        opacity: 0.8;
        transform: scaleY(0.35);
    }
}

@-webkit-keyframes fadeOut {
    from{
        opacity: 1;
        -webkit-transform: scaleY(1);
    }
    to{
        opacity: 0.8;
        -webkit-transform: scaleY(0.35);
    }
}
@keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

