body {
    display: flex;
    margin: 0;
    flex-direction: column;
    min-height: 100vh;
}
.app {
display: flex;
justify-content: center;   
padding-top: 400 px;
align-items: start;
flex: 1;              

}
/*#region Titulo */
.img-git{
    width: 80px;
}
.img-drive{
    width: 80px;
}
.div-principal{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    min-width: 100px;
    padding: 20px;
}
.titulo{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.titulo *{
    margin: 0;
}
.descargas-titulo{
    font-size: 70px;
    color: #312D81;
}
.descargas-subtitulo{
    font-size: 25px;
}
/*#endregion */

.caja-contenido{
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
}

.github{
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #000000;
    transition: background 0.3s;
}

.github:hover {

    background: #333;
}

.drive {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #051a90;
    transition: background 0.3s;
}

.discord {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #5865F2;
    transition: background 0.3s;
}


.whatsapp {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #037c17;
    transition: background 0.3s;
}


.drive:hover {
    background-color: #051a90;
}