@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #6a6a6a;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    color: #323232;

}

a{

    color: #323232;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover{
    color: blueviolet;
}

img{
    width: 100%;
}

section{
    padding: 120px 0;
}

#hero{
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url('/assets/img/hero_image.jpg');
    background-position: center;
    background-size: cover;
}

.btn{
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 30px;
    
}

.btn-primary{
    border-color: azure;
}

.btn-primary:hover{
    transform: scale(0.8);
    transition: 1s;
}

#about{
    position: relative;
}

#about::before {
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 68, 0, 0.623);
    z-index: -1;
}

#about h6{
    color: orangered;
}

.section-title{
	padding-top: 100px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.section-title h6{
    color: orangered;
}

.project{
    position: relative;
    overflow: hidden;
}

.project img{
	  max-height: 570px;
}

.projectimages{
	display: flex;
	flex-direction: row;
	 background-size: cover;
	 background-position: center;
   height: fit-content;
}
.projectimages img{
	width: 50%;
	
	   
	
}

@media only screen and (max-width: 600px) {
	 .projectimages{
		 flex-direction: column;
	}
	.projectimages img{
		width: 100%;
		height: 100%;
	}
}

.project img{
    transition: all 1s ease;
}

.project a, .project p{
    width: 220px;
    height: 120px;
    display: grid;
    align-content: center;
    text-align: center;
    font-weight: 12px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.25);
    
    color: orangered;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100px;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0%;
}

.project:hover img{

    transform: scale(1.2);
}

.project:hover a{
    visibility: visible;
    opacity: 1;
    top: 50%;
}


.project:hover p{
    visibility: visible;
    opacity: 1;
    top: 50%;
}

