51 lines
680 B
CSS
51 lines
680 B
CSS
:root {
|
|
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
font-weight: 400;
|
|
background-color: #0D0D0D;
|
|
}
|
|
|
|
html{
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
place-items: center;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
|
|
|
|
h1{
|
|
font-size: 4rem;
|
|
color: white;
|
|
}
|
|
|
|
.section-title {
|
|
font-family: Arial;
|
|
font-size: 2.5rem;
|
|
color: #f0f0f0;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.15rem;
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.section-title::after {
|
|
content: '';
|
|
display: block;
|
|
width: 60px;
|
|
height: 3px;
|
|
background-color: #D95F46;
|
|
margin: 1rem auto 0;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
|
|
|
|
h2{
|
|
color: #f0f0f0;
|
|
} |