body {
    background-color: #f5f6ff;
    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
    margin-top: 30px;
    box-sizing: border-box;
}
canvas {
    border: 1px solid #eeeeee;
}

#tooltip{
    
  position: absolute;
  background: white;
  border: 1px solid rgb(184, 184, 184);
  border-radius: 10px;
  padding: 8px 5px;
  font-size: 12px;
  pointer-events: none;
  display: none;
  z-index: 10;
}

#infoGradiente{
  margin-top: 10px;
  font-family: monospace;
  background: #f3f3f3;
  width: auto;
  height: 100%;
  border: 1px solid #ccc;
  display: inline-block;
  background-color: #fdfdfd;
}

.box{
    background-color: #fdfdfd;
box-shadow: -7px 7px 23px -2px rgba(0,0,0,0.2);
-webkit-box-shadow: -7px 7px 23px -2px rgba(0,0,0,0.2);
-moz-box-shadow: -7px 7px 23px -2px rgba(0,0,0,0.2);
    

    height: max-content;
    padding: 20px;
    border-radius: 10px;
    margin: 0;
    
}
.seccion{
    display: flex;
    flex-direction: column;
   height: 100%;
   justify-content: space-between;
}
.box p{
    width: 100%;
    height: auto;
    font-size: 0.9em;
}
section{
    max-width: 80vw;
    margin: 0 auto;
    max-height:100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60vw;
    margin: 0 auto;
    margin-bottom: 20px;
}
@media (max-width: 920px){
    header{
        text-align: center;
        flex-direction:column ; 
        
    }
    .seccion{
        margin: 20px 0;
    }
    section{
        text-align: center;
        flex-direction: column;
    }
}