@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');
body{
    background-color: #ffd4ee;
    width: 100%;
    height: 100%;
    margin-left: 0px;
    font-family: "Merienda", cursive;
    font-optical-sizing: auto;
    font-weight: auto;
    font-style: normal;
}
a{
    text-decoration: none;
}
header{
    display: flex;
    justify-content: space-around;
    background-color: #e8539f;
}

footer{
    background-color: #e8539f;
}
.container{
    display: flex;
    justify-content: space-around;
}
.subpages{
    text-align: center;
}
.img-sub{
    width: 200px;
    height: auto;
}
.p-links{
    color: black;
    text-align: center;
}
#logo{
    display: block;
    margin: auto;
}
#title-logo{
    display: flex;
}
#logo-header{
    width: 100px;
    height: auto;
}
#ig{
    width: 50px;
    height: auto;
    display: block;
    margin: auto;
}
#description{
  text-align: center;
}
#texto{
  text-align: justify;
  max-width: 700px;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 400px;
  position: relative;
  margin: auto;
  margin-top: 30px;
}

/* Hide the images by default */
.mySlides {
    display: none;
  }

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #e8539f;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #e8539f;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #e8539f;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}