:root{


    /*      theme font-family   */

    --Han : 'Han', cursive;
}
.site-title{
    background-color: white;
    background-size: cover;
    display: flex;
	justify-content: center;
	
}
body{
	margin:0;
	padding:0;
}

*{
	box-sizing: border-box;
}

.container{
	max-width:1140px;
	margin:auto;
	position: relative;
    min-height: 1px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.team{
	min-height: 10vh;
	padding:5px 5px;
	background-color:transparent; 
	float: left;
	width: 100%;
}
.team h1{
	font-size: 36px;

	font-family: var(--Han);
	font-weight: 400;
	color:black;
	margin:0;
	padding-bottom:20px;
	text-align: center;
}
.team .card{
	width:50%;
	float: left;
	padding:15px 15px;
}
.team .card .box {
	padding:5px;
	background-color:#104f55;
	border-radius:10px;
	transition: margin 1s ease,box-shadow 1s ease;
	
}
.team .card .box:hover{
	margin-top:0px;
	box-shadow:5px 5px 5px black;
}
.team .card .box img{
	width:150px;
	display: block;
	margin:0px auto;
	border-radius:80%;
	

}

.team .card .box h4{
	font-size: 20px;
	font-family: var(--Han);
	margin:20px 0px 10px;
	color:#ea5e71;
	text-align: center;
	font-weight: 400;
}

.team .card .box h5{
	font-size:16px;
	font-family: var(--Han);
	font-weight: 400;
	color:#b9b9b9;
	margin:0px 0px 5px;
	text-align: center;
}
.team .card .box p{
	color:wheat;
	font-size: 15px;
	font-family: var(--ch);
	font-weight: 200;
	line-height: 24px;
	text-align: center;
	padding:0px 20px;
}



/*responsive*/

@media(max-width: 991px){
	.team .card{
		width:50%;

	}
}

@media(max-width:550px){
	.team .card{
        width:100%;
        margin-bottom:10px;
    }
    


}
















