/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #000;
    margin: 0;
}

p {
    line-height: 1.6;
    margin-bottom: 1em;
    color: #555;
    text-align: justify;
}

a {
    color: #1abc9c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header nav a {
    margin: 0 1rem;
    font-weight: 500;
    font-size: 1rem;
}

header nav a:hover {
    color: #c19a6b;
}

/* Hero section */
.hero {
    text-align: center;
    margin: 3rem auto;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
}

/* Intro section */
.intro {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #fff;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
}

/* Button */
.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #4CAF50; /* Color de fondo */
    color: white; /* Color de texto */
    text-decoration: none; /* No subrayado */
    text-align: center;
    border-radius: 5px; /* Bordes redondeados */
}

.button:hover {
    background-color: #45a049; /* Color al pasar el mouse */
}
