*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


 body {
  margin: 150px;
  padding: 0;
  height: 100vh;
  background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
 
  font-family: sans-serif;
} 



.container {
  display: flex;
  flex-wrap: wrap;      
  gap: 20px;               
  justify-content: center; 
  max-width: 100%;        
}


.card {
  width: 400px;
  height: auto;
  background-color: #e0f7fa;
  border-radius: 10px;
  border: 10px solid #00838f;
  color: #006064;
  box-shadow: 0 4px 10px rgba(0, 131, 143, 0.2);
  margin: 0;
  text-align: center;
  padding: 20px;

    font-size: 24px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}


.head{
    font-family: 'Arial', sans-serif;
  text-align: center;
  font-size: 36px;
  color: #004d40; 
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
    text-transform: uppercase;
    box-shadow: 2px 8px 15px rgba(0, 77, 64, 0.2);
}
.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;

}
