challenge-landing-page/assents/style/estilo.css

102 lines
1.4 KiB
CSS
Raw Normal View History

/*configurações globais*/
2022-10-12 00:22:33 +00:00
* {
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
}
/*Logo da M3 Academy*/
2022-10-12 00:22:33 +00:00
.page-header {
display: flex;
justify-content: center;
background-color: black;
padding: 29px 0 29px;
2022-10-12 00:22:33 +00:00
}
.logo-m3 {
width: 12%;
height: 42%;
min-height: 23px;
min-width: 110px;
}
/*Banner do top*/
.banner-principal {
max-width: 100%;
min-height: 19%;
2022-10-12 00:22:33 +00:00
}
.banner-big {
display: block;
width: 100%;
height: auto;
}
.banner-big-mobile {
display: none;
width: 100%;
max-height: 700px;
height: 11%;
}
/*texto inicial*/
.text {
display: block;
text-align: center;
font-family: 'Inter';
}
.box-text {
flex-direction: row;
text-transform: uppercase;
margin-top: 79px;
}
.text-title {
font-weight: 500px;
font-size: 48px;
line-height: 58px;
padding-bottom: 29px;
}
.text-sub-title {
font-weight: 400;
font-size: 32px;
line-height: 39px;
}
.text-description {
text-align: justify;
margin: 0 30% 76px;
padding: 0 28px;
width: 45%;
}
@media screen and (max-width: 1024px) {
.banner-big {
display: none;
}
.banner-big-mobile {
display: block;
}
.text-description {
text-align: center;
margin: 0;
width: 100%;
}
.theree-computer {
width: 239px;
height: 239px;
}
}