/* 1. Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url("Images/boliviainteligente-37WxvlfW3to-unsplash.jpg");
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.header h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}


h2 {
    text-align: center;
    margin: 40px 0 20px;
    font-weight: 300;
    color: #555;
}

ul {
    list-style: none; 
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

li {
    margin-bottom: 15px;
}

li a {
    display: block;
    background: white;
    color: deepskyblue;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e1e1e1;
}


li a:hover {
    background: deepskyblue;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


footer {
    text-align: center;
    padding: 2rem;
    background-color: #333; 
    font-size: 0.9rem;
    margin-top: 50px;
    letter-spacing: 1px;
    color: #e1e1e1;
}

footer::after {
    content: " ❤️";
}