challenge-landing-page-carl.../assets/styles/main.css

105 lines
1.6 KiB
CSS

* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header {
display: flex;
justify-content: center;
padding: 29px 0;
background: #000000;
}
.header-logo {
display: block;
}
.main-banner {
width: 100%;
}
.top-infocard {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 73px 0 90px;
}
.infocard text {
max-width: 760px;
}
.text-primario {
text-align: center;
font-weight: 400;
font-size: 32px;
line-height: 39px;
text-transform: uppercase;
}
.text-secundario {
text-align: center;
margin-bottom: 24px;
font-weight: 500;
font-size: 48px;
line-height: 58px;
text-transform: uppercase;
}
.text-paragraph{
text-align: center;
font-weight: 400;
font-size: 16px;
line-height: 24px;
}
@media and (max-width: 414px) {
.main-banner-desktop{
display: none;
}
}
@media screen and (max-width: 1400px) {
.top-infocard {
flex-direction: column;
}
.infocard text {
margin-right: 0;
}
.text-primario{
font-size: 20px;
}
.text-secundario{
margin-bottom: 24px;
font-size: 28px;
}
.text-paragraph {
width: 100%;
font-size: 20px;
}
.imagem-vetor {
max-width: 315px;
}
}
@media screen and (min-width: 992px) and (max-width:1400px) {
.infocard text {
max-width: 542px;
margin-right: 70px;
}
}
@media and (min-width: 415px) {
.main-banner-mobile {
display: none;
}
}