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

96 lines
1.6 KiB
CSS
Raw Normal View History

2022-10-13 19:39:07 +00:00
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header {
display: flex;
justify-content: center;
padding: 28px 0;
background: #000000;
}
.logo-header {
display: block;
max-width: 226px;
width: 100%;
2022-10-13 20:45:06 +00:00
}
.image-main {
width: 100%;
}
2022-10-13 20:56:33 +00:00
.first-infocard {
display: block;
text-align: center;
}
.first-infocard-text {
display: flex;
align-items: center;
flex-direction: column;
padding: 73px 0 73px 0;
}
.first-infocard-subtitle {
text-transform: uppercase;
font-size: 32px;
font-weight: 400;
line-height: 39px;
}
.first-infocard-title {
text-transform: uppercase;
font-size: 48px;
font-weight: 500;
line-height: 58px;
}
.first-infocard-description {
max-width: 766px;
font-weight: 400;
font-size: 16px;
line-height: 24px;
padding-top: 28px;
}
.first-infocard-image {
margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
.first-infocard-title {
font-size: 28px;
line-height: 34px;
}
.first-infocard-subtitle {
font-size: 20px;
line-height: 24px;
}
.first-infocard-description {
margin: 28px;
}
.first-infocard-image {
max-width: 239px;
max-height: 239px;
margin-bottom: 90px;
}
}
2022-10-13 20:56:33 +00:00
2022-10-13 20:45:06 +00:00
@media screen and (max-width: 415px) {
.image-main-desktop {
content: url(../imagem/banner-main-mobile.png);
}
2022-10-13 19:39:07 +00:00
}