/* ---- reset ---- */
body {
    margin: 0;
    font: normal 75% Arial, Helvetica, sans-serif;
}

canvas {
    display: block;
    vertical-align: bottom;
}

/* ---- particles.js container ---- */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #023e8a;
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 50% 50%;
}

.container{
    position: absolute;
    top: 45%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.logo{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 6px;
    padding: 20px;
    margin: 0px;
    text-align: center;
}
.coming-soon{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #ededed;
    text-transform: uppercase;
    font-size: 1.15rem;
    letter-spacing: 13px;
    margin: 0px;
    text-align: center;
    padding: 20px;
}
.footer{
    position: absolute;
    bottom: 10px;
    color: white;
    width: 100%;
    text-align: center;
}
.footer a{
    text-decoration: none;
    color: wheat;
    display: inline-flex;
    font-size: .8rem;
    align-items: center;
}
.footer img{
    width: 20px;
    margin-right: 10px;
}
/* Media Queries for Mobile Screens */
@media (max-width: 768px) {
    .logo{
        text-align: center;
        font-size: 2rem;
    }
    .coming-soon{
        font-size: 1rem;
        letter-spacing: 10px;
    }
}