body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #1F1F2E;
    color: white;
    margin: 0;
    padding: 0;
}

.logo {
    width: 180px;
    margin: 20px auto;
}

h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.slogan {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* 🔹 Sección de capturas de pantalla */
.screenshots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.screenshots img {
    width: 160px;  /* 🔹 Ahora todas las imágenes tienen el mismo tamaño */
    height: 320px; /* 🔹 Relación de aspecto uniforme */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

/* 🔹 Descripción del proyecto */
.description {
    text-align: left;
    max-width: 800px;
    margin: auto;
}

.description p {
    font-size: 16px;
    margin-bottom: 10px;
}

.description ul {
    list-style-type: none;
    padding: 0;
}

.description li {
    font-size: 16px;
    margin-bottom: 5px;
}

/* 🔹 Botones de descarga */
.download-buttons {
    margin: 20px 0;
}

.download-buttons p {
    font-size: 16px;
    font-weight: bold;
}

.download-buttons img {
    width: 70px; /* 🔹 Reduce el tamaño */
    height: 70px; /* 🔹 Mantiene la relación de aspecto */
    margin: 5px;
    display: inline-block;
}

/* 🔹 Enlaces legales */
.legal-links {
    margin-top: 20px;
}

.legal-links a {
    color: #00C9A7;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
}

/* 🔹 Pie de página */
footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #12121C;
    font-size: 14px;
}

footer img {
    width: 18px;
    vertical-align: middle;
    margin: 0 5px;
}
