
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            outline: none;
            border: none;
            text-decoration: none;
            text-transform: capitalize;
            transition: .2s linear;
        }


        section {
            padding: 2rem 9%;
        }


        .home {
            display: flex;
            align-items: center;
            min-height: 100vh;
            background: url(../img/SOFTWARE/WEB_ENVELOPE_SOFTWARE_ELEMENTS-08.png) no-repeat;
            background-size: cover;
            background-position: center;
        }

        .home .content {
            max-width: 50rem;
        }

        .home .content h3 {
            font-size: 5.5rem;
            color: #695EFD;
            -webkit-text-stroke: 2px white;
            font-weight: bold;
        }

        .home .content span {
            font-size: 3.5rem;
            color: black;
            padding: 1rem 0;
            line-height: 1.5;
        }

        .home .content p {
            font-size: 1.5rem;
            color: #282828;
            padding: 1rem 0;
            line-height: 1.5;
        }


        /* media queries  */
        @media (max-width:991px) {

            .home {
                background-position: left;
            }


            @media (max-width:768px) {


                .home .content h3 {
                    font-size: 5rem;
                }

                .home .content span {
                    font-size: 2.5rem;
                }


            }


        }