/* Landing page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#landing-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: url("../images/Motif-RedTriangle.svg") no-repeat center;*/
    background-size: cover;
    font-family: Roboto, sans-serif;
}

.landing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.landing-content h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: Montserrat, serif;
}

.landing-content nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.landing-content nav ul li {
    margin-right: 1rem;
}

.landing-content nav ul li:last-child {
    margin-right: 0;
}

.landing-content nav ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;

}

.landing-content nav ul li a:hover {
    color: #13506b;
    transform: scale(1.1);
}
.landing-content nav ul li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.landing-content nav ul li:nth-child(1) {
    animation-delay: 0.3s;
}

.landing-content nav ul li:nth-child(2) {
    animation-delay: 0.4s;
}

.landing-content nav ul li:nth-child(3) {
    animation-delay: 0.5s;
}

.landing-content nav ul li:nth-child(4) {
    animation-delay: 0.6s;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ... */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Responsive CSS */

@media screen and (max-width: 1024px) {
    .landing-content h1 {
        font-size: 4rem;
    }

    .landing-content nav ul li a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .landing-content h1 {
        font-size: 3rem;
    }

    .landing-content nav ul li a {
        font-size: 0.9rem;
    }

    .landing-content nav ul {
        flex-direction: column;
        align-items: center;
    }

    .landing-content nav ul li {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .landing-content h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .landing-content nav ul li a {
        font-size: 1rem;
    }
}



