Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
/* Importación de la fuente Montserrat desde Google Fonts */ @import url(‘https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap’); /* Estilos generales */ body { font-family: ‘Montserrat’, sans-serif; background-color: #000000; /* Fondo general negro */ color: #ffffff; /* Color de texto blanco por defecto */ margin: 0; padding: 0; } /* Header */ header { background-color: #002e4b; /* Color del Header */ color: #00a365; /* Color del texto en el Header */ font-weight: 800; /* Montserrat Extrabold para el header */ text-align: center; padding: 20px; } /* Títulos (h1, h2, h3) con Montserrat Bold */ h1, h2, h3 { font-weight: 700; /* Montserrat Bold */ color: #00a365; /* Color de los títulos */ margin: 10px 0; } /* Subtítulos y textos */ h4, h5, h6 { font-weight: 600; /* Montserrat Semi-Bold para subtítulos */ } p { font-weight: 400; /* Montserrat Regular para párrafos */ } /* Ajuste para textos más ligeros (opcional) */ .light-text { font-weight: 400; /* Montserrat Regular para textos específicos */ } /* Ejemplo para enlaces */ a { color: #00a365; /* Color para los enlaces */ text-decoration: none; } a:hover { text-decoration: underline; /* Subrayado al pasar el cursor */ }