challenge-landing-page-jess.../desafio1.css

96 lines
1.3 KiB
CSS
Raw Normal View History

2022-10-13 19:01:20 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.body {
font-family: 'Inter', sans-serif;
color: black;
}
2022-10-13 20:36:47 +00:00
/*CABEÇALHO*/
2022-10-13 19:01:20 +00:00
.header {
display: grid;
background-color: black;
justify-content: center;
align-items: center;
height: 101px;
}
2022-10-13 20:36:47 +00:00
/*BANNER PRINCIPAL*/
.imagem-banner-principal {
width: 100%;
}
.imagem-banner-principal-mobile {
display: none;
}
/*TEXTO PRINCIPAL*/
.texto-principal {
display: grid;
width: 100%;
align-items: center;
justify-items: center;
justify-content: center;
padding: 4% 0% 4% 0%;
}
.titulo1 {
font-weight: 400;
font-size: 32px;
line-height: 39px;
}
.titulo2 {
font-weight: 500;
font-size: 48px;
line-height: 58px;
text-align: center;
}
.paragrafo-principal {
font-weight: 400;
font-size: 16px;
line-height: 24px;
max-width: 53%;
margin-top: 28px;
text-align: center;
}
2022-10-13 20:36:47 +00:00
/*RESPONSIVIDADE*/
2022-10-13 19:01:20 +00:00
@media (min-width: 2500px) {
.imagem-banner-principal-mobile {
display: none;
}
}
2022-10-13 19:01:20 +00:00
@media (max-width: 1024px) {
.imagem-banner-principal {
display: none;
}
.imagem-banner-principal-mobile {
display: block;
width: 100%;
}
}
@media (max-width: 820px) {
}
2022-10-13 19:01:20 +00:00
@media (max-width: 320px) {
}