challenge-landing-page-fili.../assets/styles/main.css

88 lines
1.2 KiB
CSS
Raw Normal View History

2022-10-10 22:01:20 +00:00
* {
margin:0;
padding: 0;
box-sizing: border-box;
}
2022-10-11 15:33:28 +00:00
body{
font-family: 'Inter', sans-serif;
color:#000000;
}
2022-10-10 22:01:20 +00:00
.page-header{
background: #000000;
display: flex;
justify-content: center;
padding: 28px 0;
}
.header-logo{
display: block;
}
.main-banner{
width: 100%;
display: block;
}
2022-10-11 15:33:28 +00:00
.top-infocard{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 0 96px;
gap: 73px;
}
.top-infocard-text{
max-width:40%;
}
.top-infocard-subtitle{
font-weight: 400;
font-size: 32px;
text-transform: uppercase;
}
.top-infocard-title{
margin-bottom: 28px;
font-weight: 500;
font-size: 48px;
text-transform: uppercase;
}
.top-infocard-description{
font-size: 16px;
line-height: 24px;
}
.top-infocard-subtitle,
.top-infocard-title{
text-align: center;
}
.figure-infocard{
width: 16%;
}
.top-infocard-image{
min-width: 100%;
}
/* BREAKPOINTS */
@media screen and (max-width: 414px) {
.main-banner-desktop{
display: none;
}
}
@media screen and (min-width: 415px){
.main-banner-mobile{
display: none;
}
2022-10-11 15:33:28 +00:00
}