body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.section {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  transition: background-color 1s ease-in-out;
}

.content {
  max-width: 350px;
  width:100%;
}

.section p {
  font-size: 20px;
  font-weight: normal;
}

.serif-text {
  font-family: calistoga;
  background-color: #fc8787;
  color: #800080; /* Color azul claro */
  font-size: 5px; /* Tamaño de fuente más grande */
}

.hebrew-text {
  font-family: "Secular";
}

.black-section {
  background-color: black;
  animation: colorChange 1s infinite alternate;
}

@keyframes colorChange {
  0% {
    background-color: black;
  }
  25% {
    background-color: #8B4513; /* Color café */
  }
  50% {
    background-color: #800080; /* Color morado */
  }
  75% {
    background-color: #8B4513; /* Color café */
  }
  100% {
    background-color: black;
  }
}

.photo-section {
  background-image: url('https://i.postimg.cc/GmTMKR3q/DADALUPE-3.gif'), 
                    url('https://i.postimg.cc/GmTMKR3q/DADALUPE-3.gif'),
                    url('https://i.postimg.cc/GmTMKR3q/DADALUPE-3.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0%; /* Posición de las imágenes */
  animation: imageAnimation 10s infinite linear;
}

@keyframes imageAnimation {
  0% {
    background-position: 0% 0%, 33.33% 0%, 66.66% 0%;
  }
  33.33% {
    background-position: 100% 0%, 0% 0%, 33.33% 0%;
  }
  66.66% {
    background-position: 66.66% 0%, 100% 0%, 0% 0%;
  }
  100% {
    background-position: 0% 0%, 33.33% 0%, 66.66% 0%;
  }
}

.orange-section {
  background: url('https://i.postimg.cc/L6SwWt7t/bgfons-com-fur-texture4237.jpg') center/cover no-repeat;
}

.orange-section: {
  background-color: black;
}

.round-button {
  width: 100px;
  height: 100px;
  border-radius: 10%;
  display: inline-block;
  margin: 10px;
  background-size: cover;
}

.instagram {
  background-image: url('https://i.postimg.cc/GmtbLqPZ/illustration.png');
}

.facebook {
  background-image: url('https://i.postimg.cc/nhWpCB0M/design.png');
}

.underline-text {
  text-decoration: underline;
  background-color: black;
  font-size: 14px;
}