@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

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



/* Títulos principales */
h1, h2, h3 {
    color: #333;
    text-align: center;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Contenedor principal */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.page p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
.cool {
    width:100%;
    height:70%; 
    margin: 0 auto;
    padding: 0 auto;
 
    background: #080e0a;
}
/* Sección de imagen de cabecera */
.header-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Lista de proyectos o habilidades */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

li {
    background-color: #f8f8f8;
    border-left: 4px solid #007bff;
    padding: 12px 20px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

li:hover {
    background-color: #e9ecef;
    transform: translateX(10px);
}

/* Pie de página */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 40px;
    border-radius: 8px;
}

/* Enlaces */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .header-img {
        height: 200px;
    }

    li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page {
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .header-img {
        height: 150px;
    }

    li {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}


