:root {
  /* dark shades of primary color*/
  --clr-primary-5: hsl(205, 78%, 60%);
  --clr-primary-10: hsl(21, 100%, 94%);
  /* darkest grey - used for headings */
  --clr-grey-1: hsl(209, 61%, 16%);
  --clr-grey-3: hsl(209, 34%, 30%);
  /* grey used for paragraphs */
  --clr-grey-5: hsl(210, 22%, 49%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-black: #222;
  --transition: all 0.3s linear;
  --spacing: 0.1rem;
  --radius: 0.25rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
  --fixed-width: 620px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background: var(--clr-grey-10);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
}

.section-center {
  margin: 0 auto;
  margin-top: 4rem;
  width: 80vw;
  height: 450px;
  max-width: 800px;
  text-align: center;
  position: relative;
  display: flex;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.title {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
  color: #080808;
}

.carousel-item {
  position: center;
  
}

.carousel-item h3 {
  font-family:  "Courier New";
  font-size: 8.5rem;
  margin-bottom: 0.5rem;
  color: #312c2c;
}
.carousel-item h5 {
  font-family:  "Courier New";
  font-size: 6.5rem;
  margin-bottom: 0.5rem;
  color: #31b5ac;
}


.carousel-item p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #4a4040;
}

.carousel-logo {
  position: absolute;
  bottom: -40%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1rem;
  margin-bottom: -1px; /* Agregado para superponer el elemento sobre la línea */
}

.carousel-logo img {
  max-width: 100%;
  max-height: 200px; /* Personaliza la altura del logo según tus necesidades */
}

/* Boton de pantalla completa */

.btn-primary {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}

#fullscreen-btn {
  padding: 0.10rem 0.5rem;
  font-size: 0.575rem;
}

@media (max-width: 768px) {
  .carousel {
    width: 90%;
  }
}
