html, body {
    margin: 0;
    padding: 0;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}

body {
    background: radial-gradient(circle at center, #00aef8, #2b5883);
    background-repeat: no-repeat; 
    background-size: cover; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#particles-js { 
    position:absolute; 
    width: 100%; 
    height: 100%; 
    background: radial-gradient(circle at center, #00aef8, #2b5883);
    background-image: url(""); 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: 50% 50%; 
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.logo {
    font-size: 60px;
    font-weight: 700;
}

.description {
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    opacity: 0.85;
    letter-spacing: 1px;   /* space between letters */
    word-spacing: 4px;     /* space between words */
}

.company_logo {
    height: 155px;
}

 /* Mobile Responsive Styles */

@media (max-width: 768px) {

    html, body {
    height: 120dvh;
    }

    .logo {
    font-size: 40px;
    }

    .description {
    font-size: 25px;
    letter-spacing: 1px;   /* space between letters */
    word-spacing: 4px;     /* space between words */
    width: 400px;
    line-height: 1.6;
    }

    .company_logo {
    height: 95px;
    }
}

@media (max-width: 480px) {
    html, body {
    height: 120dvh;
    }
    
    .logo {
    font-size: 32px;
    }

    .description {
    font-size: 25px;
    letter-spacing: 1px;   /* space between letters */
    word-spacing: 4px;     /* space between words */
    width: 400px;
    line-height: 1.6;
    }

    .company_logo {
    height: 95px;
    }
}