63 lines
834 B
CSS
63 lines
834 B
CSS
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, sans-serif;
|
|
background-color: #3d3846;
|
|
color: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
width: min(1100px, 90%);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
p {
|
|
color: #a9adb7;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.button {
|
|
display: inline-block;
|
|
padding: 0.8rem 1.2rem;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
background: #ffffff;
|
|
color: #111;
|
|
}
|
|
|
|
.button:hover {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 650px;
|
|
}
|
|
|
|
.hero-content p {
|
|
margin-top: 1rem;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.hero-actions {
|
|
display: flex;
|
|
gap: 1rem;
|
|
margin-top: 2rem;
|
|
} |