/* Estilos generales */
body{
    background-color: #18347C;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;  
}
p{
    text-align: center;
}
/* Seccion empresa_emisor */
.empresa_emisor{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.empresa_emisor h1{
    font-size: 1.6em;
    margin: 2em 0 1em 0;
    font-weight: bold;
    text-align: center;
}
.empresa_emisor  p{
    font-size: 1.2em;
}
/* Seccion emite */
.emite p:nth-child(1),
.emite p:nth-child(2),
.emite .empresa_receptor{
    font-size: 1.4em;
    font-weight: bold;
}
.emite p:nth-child(3){
    font-size: 1.2em;
}
.emite .empresa_receptor{
    padding: 0 2em;
}
/* Seccion img_certificado */
.img_certificado{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin: 1em;
    padding: 0.5em;
}
.img_certificado img{
    position: relative;
    width: 100%;
}
/* Seccion descarga */
.descarga {
    width: 70%;
    padding: 1em;
    background-color: #FFFFFF;
    border-radius: 10px;
}
.descarga a.boton-validar{
    text-align: center;
    justify-content: center;
    text-decoration: none;
    display: flex;
}
.boton-validar .validar{
    width: 50%;
    background-color: #18347C;
    margin: 1em 0.5em;
    padding: 1em 0;
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: bold;
}
/* Seccion logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img{
    margin: 2em 0;
    width: 50%;
}
/* Medidas para tablet en landscape */
@media (min-width: 768px) {
    .descarga{
        width: 50%;
    }
    .img_certificado{
        width: 50%;
    }
}
/* Medidas para desktop */
@media (min-width: 1281px) {
  
  .descarga{
        width: 30%;
    }
    .img_certificado{
        width: 30%;
    }
  
}