@charset "utf-8";
/* CSS Document */


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.background {
  background-image: url('D:\LA_MESA_COMUNIDAD\iglesia_san_antonio');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

.title {
  font-size: 4em;
  color: #333;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

p {
  font-size: 1.5em;
  color: #666;
}

.btn {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.message-icon {
  margin-top: 50px;
}

.message-icon img {
  width: 50px;
  height: 50px;
  transition: transform 0.5s ease;
}

.message-icon img:hover {
  transform: rotate(360deg);
}
