@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'inter', sans-serif; } /* estilazação do fundo */ .head-logo { display: flex; flex-direction: column; align-items: center; background-color: black; } /* posicionamento da imagem */ .head-image { width: 100%; padding: 28px 0 ; } .main-banner { width: 100%; display: block; } .top-information { display: flex; flex-direction: column; align-items: center; justify-content: center; } /* estilização para caixa do texto ( não coloquei em 40% para quebrar no paragrafo do figma */ .top-text { display:flex; flex-direction: column; align-items: center; width: 766px; padding: 74px 0 580px; } .top-information-subtitle { font-weight: 400; font-size: 32px; line-height: 39px; text-transform: uppercase; } .top-information-title { font-weight: 500; font-size: 48px; line-height: 58px; text-transform: uppercase; margin-bottom: 28px; } @media screen and (max-width: 414px) { .main-banner-desktop { display: none; } } @media screen and (min-width:415px ) { .main-banner-mobile { display: none; } }