*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f6f8;
}

header{
    background:#62626f;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
}


.logo1{
    width:250px;
    height:auto;
}

.logo{
    width:100px;
    height:auto;
}

header h1{
    margin-bottom:10px;
}

main{
    display:flex;
    justify-content:center;
    margin-top:40px;
}

.contenedor{
    width:500px;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0px 0px 15px rgba(0,0,0,.2);
    text-align:center;
}

.contenedor h2{
    margin-bottom:25px;
    color:#003366;
}

.boton{
    display:block;
    width:100%;
    margin:15px 0;
    padding:15px;
    background:#0078D7;
    color:white;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
    font-size:18px;
}

.boton:hover{
    background:#005fa3;
}

.boton-secundario{
    background:#28a745;
}

.boton-secundario:hover{
    background:#1d7c33;
}

hr{
    margin:30px 0;
}

footer{
    margin-top:40px;
    text-align:center;
    padding:20px;
    background:#62626f;
    color:white;
}

.footer-links a{
    margin-top:10px;
}

.footer-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    margin:0 8px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ffd700;
    text-decoration:underline;
}

.footer-links span{
    color:#cccccc;
}