/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    line-height: 1.6;
}
.button {
            background-color: #EB7C69; /* Vibrant orange color */
            color: white;
            padding: 15px 30px;
            margin: 15px 0;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .button:hover {
            background-color: #e03d00; /* Darker shade for hover effect */
            transform: scale(1.05); /* Slightly increase size on hover */
        }

header {
    background-color: #EB7C69;
    color: #fff;
    padding: 10px 0;
}

header img {
    max-width: 100px;
    margin: 20px;
}

main {
    padding: 20px;
}

a {
    color: #EB7C69;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Botones de Descarga */
div {
    margin: 20px 0;
}

div a img {
    width: 150px;
    margin: 0 10px;
}

/* Características Principales */
section {
    margin: 20px 0;
}

/* Pie de Página */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
    header img {
        margin: 10px;
        max-width: 80px;
    }

    div a img {
        width: 120px;
        margin: 5px;
    }
}
