/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #2b2b2b;
    line-height: 1.6;
}

/* Encabezado */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #333;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 50px;
}

header .title h1 {
    font-size: 1.5em;
    color: #fff;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #f0c040;
}

/* Sección de citas */
h2 {
    text-align: center;
    margin: 20px 0;
}

#quotes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.quote {
    background-color: #3a3a3a;
    border: 1px solid #f0c040;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    width: 80%;
    text-align: center;
    transition: transform 0.3s;
}

.quote:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #504f4f;
    padding: 20px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer .social img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

footer .social img:hover {
    transform: scale(1.2);
}
