@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

.containertime {
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
    gap: 30px;
    margin: 20px;
    padding: 5px;
    position: relative;
    top: 100px;
}

.nossotime {
text-align: center;
margin-top: 10px;
font-size: 40px;
font-family: 'Permanent Marker', cursive;
color: #27665f;
}

.member {
    width: 300px;
	height: 400px;
	margin-bottom: 30px;
	padding: 20px;
	box-sizing: border-box;
	border: solid #43998F 5px;
    background: rgb(112,230,216);
    background: radial-gradient(circle, rgba(112,230,216,0.5551470588235294) 0%, rgba(67,153,143,0.756827731092437) 100%);
    border-radius: 10% 10%;
}

.member:hover {
	background: #a4e687;
	transition: .5s;
}

.member img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: 20px;
    cursor: pointer;
	border: #27665f solid 2px;
}

.member h3 {
	margin-top: 0;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: white;
	border-bottom: #27665f solid 2px;
	cursor: default;
}

.member h3:hover {
color: #27665f;
transition: .4s;
cursor: default;

}

.member p {
	margin-bottom: 0;
	font-size: 18px;
	text-align: center;
	cursor: default;
}

footer {
	position: absolute;
	text-align: center;
	top:100%;
	left: 450px;
	margin-top: 150px;

}



