body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px; /* Ajusta esto si tu imagen es más grande o más pequeña */
    width: 90%;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

h1 {
    color: #5a5a5a;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.social-links a {
    color: #e4405f; /* Color de Instagram */
    font-size: 2.5em; /* Tamaño del icono */
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c13584; /* Color al pasar el ratón */
}