:root {
  --font-family: "Roboto", sans-serif;
  --text-color: #ffffff;
  --text-color-2: #1d1d1f;
  --text-color-3: #7a7a7a;
  --text-color-4: #167138;
  --bg-color: #f5f5f8;
  --youtube-banner-color: #1d1d1f;
  --pastor-banner-color: #12232d;
  --youtube-color: #ff0033;
  --bg-card-blue: #151534;
  --bg-whatsapp-card: #25d366;
  --bg-donar: #3076c5;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-style: normal;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  list-style: none;
}
body {
  background-color: var(--bg-color);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: var(--bg-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding-top: 12px;
}
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.youtube {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.contacto {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 129px;
  background-color: var(--text-color);
}

@media (max-width: 768px) {
  .info {
    flex-direction: column;
    align-items: center;
  }
  .youtube {
    flex-direction: column;
  }
  .contacto {
    flex-direction: column;
    align-items: center;
  }
  .footer {
    flex-direction: column;
    height: auto;
  }
}
