* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.4;
  background-color: #f9f9f9;
}

.subheading {
  font-family: 'Courier New', Courier, monospace;
}


.main {
  margin: 3rem;
  text-align: center;
}

.main img {
  max-width: 75%;
  height: auto;
  border-radius: 20px;
}

.para {
  font-family: 'Metamorphous'
}

.defintion {
  font-weight: bold;
}

.meditation {
  font-family: 'Times New Roman', Arial, sans-serif;
  font-weight: bold;
}

.contact-link {
  padding: 10px 20px;
  background-color: #4285F4;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-link:hover {
  background-color: #3367D6;  /* Darker blue on hover */
}




footer {
  text-align: center;
  margin: 40px 0;
}

footer a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}