challenge-landing-page-vict.../main.css

72 lines
1.2 KiB
CSS
Raw Normal View History

2022-10-10 01:43:13 +00:00
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
2022-10-09 23:54:59 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2022-10-10 01:43:13 +00:00
body {
font-family: 'inter', sans-serif;
}
2022-10-09 23:54:59 +00:00
/* 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;
2022-10-10 01:43:13 +00:00
}
.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;
}
2022-10-10 01:43:13 +00:00
.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;
}
2022-10-09 23:54:59 +00:00
}