body {
            font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
           
            width: 100%;
            
            
            font-size: 16px;
            line-height: 1.5;
            font-weight: 300;
            color: white;
            background:linear-gradient(20deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64));
        }

       .remove-top-margin {
            margin-top: 0;
        }
        .logo {
            
            max-width: 250px;
            max-height: 180px;
        }

        .logo-placeholder {
            padding: 100px 0 0 0;
            text-align: center;
			
        }

        .content {
            padding: 100px ;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
			text-align: center;
			
        }



        
        @media (min-width: 481px) and (max-width: 767px) {

            .counter {
                width: 450px;
            }

        }
.slideshow {
width: 100%;
  height: 100vh;
  
background-size: cover;
background-repeat: no-repeat;
animation: slideshow 15s ease-in-out infinite;
}
@keyframes slideshow {
0% { background-image: url("./bg1.jpg"); }
33% { background-image: url("./bg2.jpg"); }
66% { background-image: url("./bg3.jpg"); }
100% { background-image: url("./bg4.jpg"); }
}

        /*
          ##Device = Most of the Smartphones Mobiles (Portrait)
          ##Screen = B/w 320px to 479px
        */

        @media (min-width: 320px) and (max-width: 480px) {

            .counter {
                width: 350px;
            }

        }