challenge-landing-page/style.css

168 lines
2.3 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
}
body html{
box-sizing: border-box;
width: 100%;
}
/*HEADER*/
.back-logo{
background-color: #000000;
display: flex;
justify-content: center;
padding: 29px 0;
width: 100%;
}
.img-logo{
display: block;
width: 12%;
}
/*FINAL HEADER*/
/*IMG PRINCIPAL*/
.not-main{
width: 100%;
display: block;
}
.section-3pc{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 145px;
}
.div-3pc{
display: flex;
flex-direction: column;
align-items: center;
width: 40%;
margin-bottom: 73px;
}
.h2-3pc{
font-weight: 400;
font-size: 32px;
line-height: 39px;
text-transform: uppercase;
}
.h1-3pc{
font-weight: 500;
font-size: 48px;
line-height: 58px;
text-transform: uppercase;
}
.p-3pc{
font-weight: 400;
font-size: 16px;
line-height: 24px;
margin-top: 28px;
}
.figure-3pc{
width: 100%;
text-align: center;
}
.img-3pc{
width: 16.5%;
}
.div-icon{
}
.div-cards{
display: flex;
gap: 20px;
align-items: center;
justify-content: center;
margin-top: 179px;
}
.section-cards{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 35px 2px 27px 2px;
width: 18%;
background: #FFFFFF;
box-shadow: 0px 4px 20px rgb(0 0 0 / 23%);
}
.img-cards{
}
.p-cards{
width: 84%;
margin-top: 27px;
}
/*MEDIA SCREEN*/
@media screen and (max-width: 1024px){
.img-logo{
display: block;
width: 52%;
}
.not-main-descktop{
display: none;
}
/*SECTION 3-PC*/
.section-3pc{
margin-top: 73px;
}
.div-3pc{
width: 86%;
}
.h2-3pc {
font-weight: 400;
font-size: 20px;
line-height: 24px;
}
.h1-3pc {
font-weight: 500;
font-size: 28px;
line-height: 34px;
}
.p-3pc{
margin-top: 20px;
}
.img-3pc{
width: 58%;
}
/*FIM SECTION 3-PC*/
/*SECTION CARDS*/
.div-icon{
}
.div-cards{
flex-direction: column;
margin-top: 90px;
}
.section-cards{
width: 84.5%;
}
.img-cards{
}
.p-cards{
}
/*FIM SECTION CARDS*/
}
@media screen and (min-width: 1025px){
.not-main-mobi{
display: none;
}
}