*{
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}
    
html,body{
    min-height:100%;
}



body { 
    background: #000000;

}

h1{
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

h2, h3{
    color:white;
}

p{
    color:aliceblue;
    margin: 30px;
}

#mainImage img {
    width:65%;
    height: auto;
    border-radius: 10%;
    
}


section {
    margin-top: 20rem; 
}

#mainImage{
    margin-top: 5rem;
    margin-bottom: 10rem;
}

/*Scroll down Arrow styling */

#arrow{
    margin-top:1rem;
    width: 100%;
    justify-content: center;
    
}

.arrow-pulse-down:after {
	content: "V"; 
	position: relative;
	width: 35px; height: 35px;
	margin: 0 auto;
    color:white;
	left: 0; right: 0;
	font-size: 35px;
	animation: arrow-pulse-down 700ms linear infinite;
}
	@keyframes arrow-pulse-down {
		0% {
			bottom: 40px;
			opacity: 0;
		}
		25% {
			opacity: .25;
		}
		50% {
			opacity: .5;
		}
		75% {
			opacity: .75;
		}
		100% {
			bottom: 20px;
			opacity: 1;
		}
	}

    /*Left in blur transitions*/

    .hidden{
        opacity: 0;
        filter: blur(5px);
        transform: translateX(-100%);
        transition: all 1.2s;
    }

    .show{
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }

    .logos{
        width: 100%;
        justify-content: center;
        display:flex;
        flex-wrap: wrap;
    
    }

    .logo { transition: transform 0.5s; }
    .logo:hover { transform: scale(0.75); }

    .logo img{
        height: 100px;
        width: auto;
        margin: 10px;
    }

    #contact img{
        height: 100px;
        width: auto;
    }

    #contact img { transition: transform 0.5s; }
    #contact img:hover { transform: scale(0.75); }


    @media only screen and (max-width: 600px) {
        #mainImage img {
            width: 20rem;
            height: 30rem;
            object-fit: cover;
            border-radius: 10%;
            margin: 0px;
        }
        
        #mainImage{
            margin-top: 5rem;
        }

        section #arrow{
            margin-top:5rem;
            margin-bottom:0;
        }

        #intro{
            margin-top:10rem;
        }
      }

    