diff --git a/assets/Styles/main.css b/assets/Styles/main.css new file mode 100644 index 0000000..1e1ad88 --- /dev/null +++ b/assets/Styles/main.css @@ -0,0 +1,108 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap'); + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Inter', sans-serif; + color: #000000; + +} + +.page-header { + padding: 29px 0; + justify-content: center; + display: flex; + background: #000000; + +} + +.logo-cima { + display: block; +} + +.banner-principal { + width: 100%; +} + +.infocard-cima { + display: flex; + align-items: center; + flex-direction: column; +} + +.top-paragrafo { + text-align: left; + max-width: 766px; + margin-top: 28px; + font-weight: 400; + font-size: 16px; + line-height: 24px; +} + +.top-titulo-h2 { + text-align: center; + margin-top: 73px; + font-style: normal; + font-weight: 400; + font-size: 32px; + text-transform: uppercase; + +} + +.top-titulo-h1 { + text-align: center; + font-weight: 500; + font-size: 48px; + line-height: 58px; + text-transform: uppercase; +} + +.img { + margin-top: 73px; +} + + +@media screen and (max-width: 1024px) { + .top-titulo-h2 { + font-size: 20px; + line-height: 24px; + } + + .top-titulo-h1 { + font-size: 28px; + line-height: 34px; + height: 49px; + } + + .top-paragrafo { + max-width: 357px; + width: 96%; + height: 115px; + text-align: center; + margin: 0 auto ; + } + + .img { + width: 239px; + height: auto; + } + +} + + +@media screen and (max-width:414px) { + .banner-principal-desktop{ + display: none; + } + +} + +@media screen and (min-width: 415px) { + .banner-principal-mobile{ + display: none; + } +}