html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    /* background-color: black; */
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: black;
}
#logo{
    width: clamp(200px, 60vw, 450px);
    z-index: 2;
}
#logo-container {
    position: absolute;
    z-index: 2;
}
#container {
    width: 100vw;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-family: 'League Gothic', sans-serif;
    
}
#p-1{
    animation: fadeAnimation 2s infinite;
}
#p-2{
    opacity: 0;
    animation: fadeAnimation 2s infinite 1s;
}
@keyframes fadeAnimation{
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@media only screen and (max-width: 600px) {
    #logo {
        width: 80vw;
    }
    #p-1, #p-2 {
        font-size: 1.2em;
    }
    
}