challenge-landing-page/css/styles.css

55 lines
818 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", Arial, Helvetica, sans-serif;
}
.page-header {
display: flex;
justify-content: center;
padding: 28px 0;
background: #000000;
}
.header-logo {
display: block;
max-width: 226px;
margin: 0 auto;
}
.description {
font-size: 16px;
font-weight: 400;
line-height: 24px;
color: #000000;
}
.title-content {
padding: 50px 0;
text-align: center;
}
.title-content h1 {
font-size: 32px;
font-weight: 400;
color: #000000;
text-transform: uppercase;
}
.title-content h1 strong {
display: block;
font-size: 48px;
font-weight: 500;
}
.title-content .description {
padding-top: 20px;
padding-bottom: 50px;
max-width: 700px;
margin: 0 auto;
}
.title-content img {
display: block;
margin: 0 auto;
}