.general{
	background-color: black;
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-left:-10px;
	margin-right:-10px;
	padding-top:75px;

}

.hello-text{
	border-width:5px;
	border-style:none;
	border-bottom-style: solid;
	border-color:grey;
	color: white;
	font-size: 20px;
	background-color: black;
	padding-left:30px;
	padding-right: 30px;
}

.projects-text{
	border-width:5px;
	border-style:none;
	border-bottom-style: solid;
	border-color:grey;
	color: white;
	font-size: 30px;
	background-color: black;
	text-align: center;
	vertical-align: middle;
}

.projects{
	display: flex;
	flex-wrap:wrap;
	background-color: black;
	text-align: center;
	vertical-align: middle;
	align-items:center;
	padding:35px;
	border-width:5px;
	border-color:grey;
	border-style: none;
	border-bottom-style: solid;
}

.project{
	display: flex;
	flex-direction: column;
	flex:1;
	margin-top: 15px;
	background-color: black;
	border-style: none;
	height:570px;
	align-items: center;
	padding:25px;
}

.project-button{
	padding:0px;
	margin:0px;
	border-style: none;
	background-size:cover;
	width:400px;
	height: 400px;
	transition-property: transform;
	transition-duration: 1s;
}
.project-image{
	width:400px;
	height:400px;
	object-fit: cover;
}

.project-name{
	padding-top:0px;
	color:white;
	font-size:25px;
	background-color: black;
	margin-top:35px;
	margin-bottom:15px;
}

.project-description{
	flex:1;
	margin:0px;
	color:white;
	background-color:black;
	width:400px;
}
.project-button:hover{
 transform: scale(1.1);
 cursor: pointer;
}







