*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; 
    box-sizing: border-box;
}
body{
	background: #ffc0cb;
    color: #fff;
}

nav {
    margin-left: 5%;
	margin-top: 5%;
    text-align: absolute;
    top: 10px;
    right: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
	color: #000000;
  }
  
  nav a {
    text-decoration: none;
    color: black;
    align-items:center;
  }

  h2 {
	color:black;
	margin-top: 2.5%;
    margin-bottom: 2.5%;
    margin-left: 5%;
    font-size: 300%;
    font-family: 'Catherova', sans-serif;
    align-items: left;
  }

.wrapper{
    padding: 10px 10%;
}
#card-area{
    padding: 50px 0;
}
.box-area{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.box {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}
.box img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.overlay {
	width: 100%;
	height: 0;
	background: linear-gradient(transparent,#1c1c1c 58%);
	border-radius: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	font-size: 14px;
	transition: height 0.5s;
}
.overlay h3 {
	color: #fff;
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 80%;
	font-family: 'Poppins', sans-serif;
	font-size: 30px;

}
.overlay a {
	margin-top: 10px;
	color: #262626;
	text-decoration: none;
	font-size: 14px;
	background: #fff;
	border-radius: 50px;
	text-align: center;
	padding: 5px 15px;
}
.box:hover img{
    transform: scale(1.1);
}
.box:hover .overlay{
    height: 100%;
}

