html{
    box-sizing: border-box;
}

*{
    box-sizing: inherit;
}

body{

    padding: 0;
    margin: 0;
}

.section-light{
    background-color: #f4f4f4;
    color: black;
    text-align: center;
    margin: 5px;
    
}

.section-dark{
    background-color: #282e34;
    color: white;
    text-align: center;
    margin: 5px;
    }

    .image{
        background-attachment: fixed;/*This propery is addig the parrallax property*/
        background-size: contain;
    }
    .first-image{
        background-image: url(stunning-glass-building-with-beautiful-sunset-background-perfect-architectural-real-estate-purposes_153912-256277.jpg.avif);
        min-height: 500px;
        opacity: 0.8;
    }

    .second-image{
        background-image: url(img2.jpg);
        min-height: 500px;
        opacity: 0.8;
    }

    .third-image{
        background-image: url(img3.jpeg);
        min-height: 500px;
        opacity: 0.8;
    }

    .fourth-image{
        background-image: url(stunning-glass-building-with-beautiful-sunset-background-perfect-architectural-real-estate-purposes_153912-256277.jpg.avif);
        min-height: 500px;
        opacity: 0.8;
    }

    .text-content{
        position: relative;
        top: 200px;
        left:550px;
        font-size: xx-large;
        color: white;
        background-color: rgb(140, 136, 136);
        max-width: 20%;
        border-radius: 10px;
        text-align: center;
        text-transform: uppercase;
        padding: 5px;
        opacity: 0.8;

        
    }
