From 7e888271d554802599c656ce2f989ca25e065cf9 Mon Sep 17 00:00:00 2001 From: Juanse Marquez Date: Thu, 23 Apr 2026 20:05:29 -0300 Subject: [PATCH] Agrega archivo CSS --- estilo.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 estilo.css diff --git a/estilo.css b/estilo.css new file mode 100644 index 0000000..01d2854 --- /dev/null +++ b/estilo.css @@ -0,0 +1,49 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + background-color: #f4f6f8; + color: #333; +} + +header { + background-color: #2c3e50; + color: white; + padding: 20px; + text-align: center; +} + +.container { + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 20px; + padding: 20px; +} + +.card { + background-color: white; + border-radius: 10px; + padding: 20px; + width: 300px; + box-shadow: 0 4px 8px rgba(0,0,0,0.1); +} + +h2 { + margin-top: 0; + color: #2c3e50; +} + +ul { + padding-left: 20px; +} + +li { + margin-bottom: 8px; +} + +@media (max-width: 600px) { + .card { + width: 100%; + } +} +