body {
  font-family: Monospace, Monaco;
  background-image: url('https://media.istockphoto.com/id/1128228758/vector/savanna-landscape-vector-illustration.jpg?s=612x612&w=0&k=20&c=ejSLZxst1K73FLe89Jf9LAg4MaFPt2OUuJRH-jCmNMM=');
  background-size: cover;
  text-align: center;
  color: white;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: flex-start; 
}

.title {
  margin-bottom: 20px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  background-repeat: no-repeat;
  width: 200px;
  height: 300px;
  margin-right: 20px; /* Added margin for spacing between title and card */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.card img {
  width: 100px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.card h2 {
  margin-top: 10px;
}

.card a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: white;
  background-color: #000;
  padding: 5px 10px;
  border-radius: 5px;
}

.contact {
  margin-top: 20px;
  font-size: 25px;
  text-decoration: none;
  color: white;
  background-color: #000;
  padding: 10px 20px; 
  border-radius: 5px;
  display: inline-block;
}


.contact:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
