/* estilo.css */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: bold;
    color: #1a5f7a !important;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
}

.nav-link:hover {
    color: #1a5f7a !important;
}

h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #1a5f7a;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #1a5f7a;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.list-group-item a {
    color: #1a5f7a;
    text-decoration: none;
}

.list-group-item a:hover {
    text-decoration: underline;
}

.btn-outline-primary {
    color: #1a5f7a;
    border-color: #1a5f7a;
}

.btn-outline-primary:hover {
    background-color: #1a5f7a;
    color: white;
}

footer {
    background-color: #1a5f7a;
    padding: 20px 0;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}