*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.ancho{
    max-width: 1200px;
    margin: auto;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: black;
}
header{
    background-color: white;
}
header figure{
    max-width: 900px;
    margin: auto;
    padding: 5px;
}
header img{
    width: 100%;
}
hr{
    border: #800000 5px solid;
}

/*FECHA*/
.fecha{
    text-align: right;
    color: #800000;
    font-weight: bold;
    padding: 10px;
  }
  .fecha p{
    display: inline-block;
  }
/*img fondo*/
.contgrafico{
    height: 500px;
    background-image: url(imagenes/fondo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contgrafico h1{
    max-width: 700px;
    font-size:40px;
    color: #cc9900;
    text-align: center;
    line-height: 50px;
    text-shadow: #373838 0px 0px 10px;
}

.creacion{
    border: #ccc 1px solid;
    width: 450px;
    height: 280px;
}
.creacion iframe{
    width: 100%;
    height: 100%;
}
footer{
    background-color: #cc9900;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}
footer figure{
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer figure img{
    width: 45%;
}
footer .info{
    width: 300px;
}
footer .info p{
    color: white;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*MOVIL*/
@media screen and (max-width: 480px ){
    .contgrafico h1{
        max-width: 400px;
        font-size:25px;
        line-height: 40px;
        padding-top: 20px;
    }
    .creacion{
        border: #ccc 1px solid;
        width: 390px;
        height: 240px;
    }
    .creacion iframe{
        width: 100%;
        height: 100%;
    }
}