/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 5 mar 2025, 10:37:50 a.m.
    Author     : Fany
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Estilos del Header */
.header {
    background: linear-gradient(135deg, rgba(235,244,227,0.86) 10%, rgba(121,3,3,1) 38%, rgba(73,6,1,0.65) 86%);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos para el header */
.header {
    width: 100%;
    background-color: #333; /* Color de fondo del header */
    color: white;
    padding: 10px 0;
    text-align: center;
}

/* Sección superior: Bienvenido y fecha */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 10px; /* Espacio entre la sección superior y el título */
}

/* Título principal y subtítulo */
.header-title {
    margin-bottom: 20px; /* Espacio entre el título y el pie de página */
}

.header-title h1 {
    font-size: 1.5em;
    margin: 0;
}

.header-title h2 {
    font-size: 1.2em;
    margin: 0;
}
 

.header .logo img {
    max-height: 100px;
}

.header .title h1 {
    font-size: 24px;
    margin: 0;
}

.header .title h2 {
    font-size: 18px;
    margin: 5px 0 0;
}



/* Estilos del contenido principal */
main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.proyecto h2 {
    font-size: 22px;
    color: #700000;
}

.proyecto p {
    font-size: 16px;
    line-height: 1.6;
}

/* Estilos del Footer */
footer {
    background: #700000;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
    .menu-btn {
        display: block; /* Mostrar en pantallas pequeñas */
    }

    .header .title h1 {
        font-size: 20px;
    }

    .header .title h2 {
        font-size: 16px;
    }
}
