challenge-landing-page-moni.../assets/styles/main.css
2022-10-11 23:23:36 -03:00

71 lines
1.0 KiB
CSS

* {
margin: 0%;
padding: 0%;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color:#000000;
}
.page-header {
display: flex;
padding: 28px 0;
justify-content: center;
background: #000000;
}
.header-logo {
width: 100%;
display: block;
}
.main-banner {
width: 100%;
}
.top-infocard {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.top-infocard-subtitle{
font-weight: 400;
font-size: 32px;
line-height: 39px;
text-transform: uppercase;
color: #000000;
}
.top-infocard-title {
height: 58px;
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 48px;
line-height: 58px;
text-transform: uppercase;
color: #000000;
}
.top-infocard-description {
max-width: 766px;
text-align: left;
}
@media and (max-width: 414px) {
.main-banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main-banner-mobile {
display: none;
}
}