  
  /* ArtProject.it digital marketing */
  
  body, html {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
        }

        .split-section {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }


        .split-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4); /* 40% */
            transition: opacity 0.4s ease;
            z-index: 1;
        }


        .split-section:hover::before {
            opacity: 0;
        }


        .content-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

 
        .logo {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

              .logo img {
          height: 150px;
        }

        @media (max-width: 768px) {
            .split-section {
                height: 50vh;
            }
              .logo img {
          height: 100px;
            top: 20px;
        }
        }