challenge-landing-page-gabr.../style.css

97 lines
1.5 KiB
CSS

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
}
/* header com logo */
header{
background-color: black;
display: flex;
align-items: center;
justify-content: center;
height: 101px;
}
/* Banner principal */
.top-banner-desktop{
width: 100%;
}
.top-banner-mobile{
display: none;
max-height: 598px;
object-fit: cover;
}
/* info section */
.info-section{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 73px 0 80px;
}
.info-section h2{
text-align: center;
font-weight: 400;
font-size: 32px;
line-height: 39px;
}
.info-section h1{
text-align: center;
font-weight: 500;
font-size: 48px;
line-height: 58px;
}
.info-section p{
font-weight: 400;
font-size: 16px;
line-height: 24px;
max-width: 54%;
padding: 28px 0 73px;
margin: 0 auto;
}
/* Banner pincipal mobile */
@media screen and (max-width:768px) {
.top-banner-desktop{
display: none;
}
.top-banner-mobile{
display: unset;
width: 100%;
}
.info-section h2{
max-width: unset;
font-size: 20px;
line-height: 24px;
}
.info-section h1{
font-size: 28px;
line-height: 34px;
}
.info-section p{
max-width: unset;
padding: 12px 28px 65px;
font-size: 16px;
line-height: 24px;
text-align: center;
}
}