35 lines
378 B
SCSS
35 lines
378 B
SCSS
html {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Crimson Text', sans-serif;
|
|
color: #2f273e;
|
|
font-size: 1.1rem;
|
|
margin: 0px;
|
|
}
|
|
|
|
p {
|
|
text-align: justify;
|
|
}
|
|
|
|
a {
|
|
color: #8962ec;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.page {
|
|
max-width: 40%;
|
|
text-align: center;
|
|
margin-bottom: 8rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 5rem;
|
|
}
|