From c8c3c887e64861bd9067afbb45c6b48f3dd06a29 Mon Sep 17 00:00:00 2001 From: Marcela Mathias Date: Thu, 13 Oct 2022 16:49:24 -0300 Subject: [PATCH] add css section area-content --- css/styles.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/css/styles.css b/css/styles.css index 87a5beb..2c24e24 100644 --- a/css/styles.css +++ b/css/styles.css @@ -55,3 +55,34 @@ display: block; margin: 0 auto; } + +.area-content { + display: flex; + align-items: center; + justify-content: center; +} + +.area-content .box-item { + background: #ffffff; + box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23); + padding: 30px 20px; + margin: 0 10px; + min-height: 280px; +} + +.area-content .box-item:first-of-type { + margin-left: 0; +} + +.area-content .box-item:last-of-type { + margin-right: 0; +} + +.area-content .box-item .description { + max-width: 299px; + text-align: center; + margin: 0 auto; +} +.area-content .box-item img { + margin: 0 auto 20px auto; +}