@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
* {
  margin: 0px;
  padding: 0px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
}


/* WIDTH --- HEIGHT */
.w-100 {
    width: 100%;
}
.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}

.h-50 {
  height: 9vh;
}

/* COLORES */
.bg-green {
  background-color: #3b7342;
}
.bg-pink {
  background-color: #ea7e71;
}
/* PADDINGS MARGIN */
.p-5 {
  padding: 5%;
}
.p-01 {
  padding: 0.1em;
}
.pt-5 {
  padding-top: 5px;
}

/*  FLEX  */

.d-flex {
    display: flex;
}

.n-wrap {
    flex-wrap: nowrap;
}

.content-center {
    justify-content: center;
    align-content: center;
}

header {
 width: 100%;
 background-color: #ea7e71;
}

.header div {
    width: 25%;
}


.header ul {
    display: flex;
}

.header li {
    width: 33%;
    text-align: center;
    font-size: 20px ;
}

/* MENU */
.boton {
  
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
}

.contenedor{
  max-width: 75em;
  margin: 0 auto;
}
.titulo {
  display: block;
  margin: 2em auto 2em auto;
  padding: 1em;
  background-color: #dbac38;
  color: #3b7342;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0.25em;
  box-shadow: 4px 3px 5px #26492a;
  max-width: 90%;
  text-align: left;
}

.museo{
  max-width: 90%;
    margin: 1em auto 0em auto;
    padding: 1em;
    box-shadow: 5px 5px 5px #26492a;
    background-color: #dbac38;
    border-radius: 0.25em;
    color: #3b7342;
}

.contenedor-foto{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  align-content: center;
  
}

.contenedor-foto a {
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}
contenedor-foto a p{
  width: 100%;
}

.foto{
  width: 400px;
  
}


@media (width <= 400px){
  
  .banner-home{
    min-width: fit-content;
  }

  .museo{

    padding: 5px;

  }
  

  .item{

    width: 300px;

  }
  .foto{
    width: 150px;
  }
  
}



body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-height: fit-content;
  max-width: fit-content;
  
}

.columna {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item {
  text-align: center;
  margin-bottom: 20px;
}


.item a {
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.item p {
  text-align: center;
  color:  #3b7342;
  background-color: #dbac38;

}

footer {
  background-color: #ea7e71;
}

.italic{
  font-style: italic;
}

.f-12px{
  font-size: 12px;
}

.datos{
  max-width: 90%;
    margin: 1em auto 3em auto;
    padding: 1em;
    box-shadow: 5px 5px 5px #26492a;
    background-color: #dbac38;
    border-radius: 0.25em;
    color: #3b7342;
    padding-bottom: 5px;
}

.img_logo{
  padding-top: 15px;
  padding-bottom: 18px;
max-width: 100%;
}