.conteineradote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

.memberbox {
    width: 300px;
	height: 400px;
	margin-top: 50px;
	padding: 20px;
	box-sizing: border-box;
	border: solid white 3px;
    border-radius: 5%;
    background: rgb(250,216,162);
background: linear-gradient(90deg, rgba(250,216,162,1) 0%, rgba(255,231,215,1) 100%);
    

}

.memberbox img {
    width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: 20px;
    cursor: default;
	border: #ad8f5f solid 2px;

}

.memberbox h3 {
	margin-top: 0;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #ad8f5f;
	cursor: default;
}

.location {
    text-align: center;
    cursor: default;

}

.queroadotar {
    text-align: center;
    position: relative;
    top:10px;
    left: 360px;
    cursor: default;
    color: #43998f;
    text-shadow: 4px 5px 6px rgba(0,0,0,0.6);
    font-size: 40px;

}

.btn {
    position: relative;
    left: 50px;
    top: 20px;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    border-radius: 6em;
    transition: all .2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: white;
    background-color: #ad8f5f;
    cursor: pointer;
   }
   
   .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }
   
   .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
   }
   
   .btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
   }
   
   .btn::after {
    background-color: #fff;
   }
   
   .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
   }

   footer {
    position: absolute;
	text-align: center;
	top:100%;
	left: 450px;
    margin-top: 30px;
   }

