* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #666;
}

.gallery {
    width: 100%;
    max-width: 800px;
    margin: 40px 0;
    text-align: center;
}

.gallery h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-container img {
    width: 45%;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

.contact {
    width: 100%;
    max-width: 600px;
    margin: 40px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.contact p {
    color: #666;
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact label {
    text-align: left;
    font-weight: bold;
    color: #333;
}

.contact input, .contact textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
}

.contact button {
    padding: 10px;
    font-size: 1em;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #555;
}

footer {
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
    text-align: center;
}
.download-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1.1em;
    color: #fff;
    background-color: #34a853; /* Color de Play Store */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #2c8e43; /* Color al pasar el cursor */
}
