challenge-landing-page/Styles/index.css

88 lines
1.4 KiB
CSS
Raw Normal View History

2022-10-10 15:12:02 +00:00
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
2022-10-10 23:40:11 +00:00
body{
font-family: 'Inter', sans-serif
}
2022-10-10 15:12:02 +00:00
.page-header{
display: flex;
justify-content: center;
padding: 29px 0;
background-color: #000000;
}
.banner-principal{
width: 100%;
}
.banner-principal-mobile,
.infocard-image-mobile{
display: none;
}
2022-10-10 23:40:11 +00:00
.text-infocard{
display: flex;
flex-direction: column;
padding: 73px 0;
align-items: center;
text-align: center;
}
.text-subtitle{
font-weight: 400;
font-size: 32px;
line-height: 39px;
text-transform: uppercase;
}
.text-title{
font-weight: 500;
font-size: 48px;
line-height: 58px;
margin-bottom: 20px;
text-transform: uppercase;
}
.text-description{
font-weight: 400;
font-size: 16px;
line-height: 24px;
width: 38%;
}
.infocard-image{
display: flex;
flex-direction: column;
align-items: center;
}
@media screen and (max-width: 414px){
.banner-principal-desktop,
.infocard-image-desktop{
display: none;
}
.banner-principal-mobile,
.infocard-image-mobile{
display: unset;
}
}
2022-10-10 23:40:11 +00:00
@media screen and (max-width: 768px){
.text-subtitle{
font-size: 20px;
line-height: 24px;
}
.text-title{
font-size: 28px;
line-height: 34px;
}
.text-description{
width: 100%;
}
2022-10-10 23:40:11 +00:00
}