31 lines
393 B
SCSS
31 lines
393 B
SCSS
$white: #f4f7fc;
|
|
$blue: #2f6c76;
|
|
$dark-blue: #193b41;
|
|
|
|
$font-helvetica: helvetica, arial, sans-serif;
|
|
|
|
html,
|
|
body {
|
|
font-size: 16px;
|
|
margin-top: 2rem;
|
|
background-color: $white;
|
|
height: 100%;
|
|
font-family: $font-helvetica;
|
|
color: $blue;
|
|
}
|
|
|
|
body {
|
|
max-width: 1200px;
|
|
padding: 0 0.5rem;
|
|
margin: auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
}
|
|
|
|
p {
|
|
color: $dark-blue;
|
|
font-size: 1.5rem;
|
|
}
|