body {
    background-color: bisque;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: center;
}


#container {
   display: flex;
   justify-content: center;
   width: 95%;
   flex-wrap: wrap;
  
}

#encabezadouno {
    width: 100%;
    background-color: #91A3FD; 
    text-align: center;
}

#encabezadodos {
 margin-top: 10px;
    text-align: center;
    width: 100%;
}
#encabezadotres {
   
    width: 100%;
}

h1 {
    color: sienna;
    font-size: 50px;
    margin-bottom: 10px;
}
h2 {
    font-family: 'Caveat', cursive;
    color: white;
    font-size: 40px;
    margin-top: 5px;
    margin-bottom: 10px;
}

h3 {
    color:#2058BA;
    font-family: 'Open Sans', sans-serif, 'light 300';
    font-weight: 300;
}

img {
     box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.5);
}

#pie {
    width: 100%;
}

#pie p{
  font-size: 10px;
  color: sienna;
  text-align: center;
}
.accordion {
    background-color:  #91A3FD; 
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #91A3FD; 
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }

@media (min-width: 1024px) and (orientation: landscape) {
    #container {
        width: 50%;
     }
  }