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

250 lines
3.7 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.body {
font-family: 'Inter', sans-serif;
color: black;
}
/*CABEÇALHO*/
.header {
display: grid;
background-color: black;
justify-content: center;
align-items: center;
height: 101px;
}
/*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: 73px 0px 73px 0px;
}
.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;
}
/*IMAGEM COMPUTADORES CONECTADOS*/
.figura-computadores-conectados {
display: grid;
align-items: center;
justify-content: center;
}
/*CONTAINER 1*/
.pai-container1 {
display: flex;
max-width: 100%;
padding: 177px 0px 0px 0px;
align-items: center;
justify-content: center;
margin-bottom: 80px;
}
.container1 {
display: grid;
background: #FFFFFF;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
margin: 0 1%;
padding: 26px;
min-width: 350px;
max-width: 350px;
min-height: 287px;
max-height: 287px;
align-items: center;
justify-items: center;
}
.paragrafo-container1 {
text-align: center;
}
/*CONTAINER2*/
.pai-container2 {
display: flex;
gap: 39px;
grid-template-columns: repeat(3, 3fr);
justify-content: center;
background: #E0E0E0;
max-width: 100%;
max-height: 27%;
}
.container2 {
justify-content: center;
align-items: center;
}
.imagem-container2 {
display: block;
max-width: 566px;
translate: 0px 64px;
}
.pai-container3 {
display: flex;
max-width: 100%;
padding: 177px 0px 0px 0px;
align-items: center;
justify-content: center;
margin-bottom: 80px;
}
.container3 {
display: grid;
}
.texto2 {
display: grid;
align-items: center;
text-align: center;
justify-content: center;
}
.oculos {
}
/*RESPONSIVIDADE*/
@media (min-width: 2500px) {
/*BANNER PRINCIPAL*/
.imagem-banner-principal-mobile {
display: none;
}
/*TEXTO PRINCIPAL*/
.titulo1 {
font-size: 64px;
line-height: 78px;
}
.titulo2 {
font-size: 96px;
line-height: 116px;
}
.paragrafo-principal {
font-size: 32px;
line-height: 48px;
}
/*IMAGEM COMPUTADORES CONECTADOS*/
.imagem-computadores-conectados-mobile {
display: none;
}
}
@media (min-width: 1025px) {
/*IMAGEM COMPUTADORES CONECTADOS*/
.imagem-computadores-conectados-mobile {
display: none;
}
}
@media (max-width: 1024px) {
/*BANNER PRINCIPAL*/
.imagem-banner-principal {
display: none;
}
.imagem-banner-principal-mobile {
display: block;
width: 100%;
}
/*TEXTO PRINCIPAL*/
.texto-principal {
padding-bottom: 65px;
}
/*IMAGEM COMPUTADORES CONECTADOS*/
.imagem-computadores-conectados-desktop {
display: none;
}
.imagem-computadores-conectados-mobile {
display: grid;
}
/*CONTAINER 1*/
.pai-container1 {
display: grid;
padding-top: 90px;
margin-bottom: 0px;
}
.container1 {
margin-bottom: 24px;
}
}
@media (max-width: 820px) {
}
@media (max-width: 320px) {
}