body{
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    /* position: relative; */
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 3;
    background: url(./bg/bg2.jpeg) no-repeat center center/cover;
    font-family: 'Darker Grotesque',sans-serif;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
  
    width: 100%;
    height: 100%;
}
#particles-js::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(./bgs.png) no-repeat center center/cover;
 }
 h1{
    position: relative;
    font-size: 5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 5rem;
    letter-spacing: 25px;
}
p{
    width: 70%;
    margin: 35px auto;
    font-size: 1.2rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
}
#main{
    position: absolute;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.949);
    right: 20vw;
    left: 20vw;
    top: 12vh;
}
footer{
    position: absolute;
    bottom: 17px;
    letter-spacing: 1px;
    font-weight: 300;
    width: 100%;
    text-align: center;
    
}
footer a{
    text-decoration: none;
    color: white;
}
@media only screen and (max-width:500px) {
    #main{
        left: 1vw;
        right: 1vw;
    }
    h1{
        font-size: 3rem;
        line-height: 4rem;
        letter-spacing: 20px;
    }
    p{
        font: 1rem;
        line-height: 1.3rem;
    }
}
