/*--START LANDING PAGE--*/
.section {
    
    /*background:
        
        linear-gradient(
            rgba(0, 0, 0, 0.8), 
            rgba(0, 0, 0, 0.8)
        ),
        url("pictures/home.webp");*/
    
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    height: 100vh;
    background-size: cover;
    
}

.section-content {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    
}
/*--END LANDING PAGE--*/