55 lines
798 B
CSS
55 lines
798 B
CSS
/* RESET */
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
font-style: normal;
|
|
}
|
|
|
|
p {
|
|
font-style: normal;
|
|
}
|
|
|
|
/* FONTS */
|
|
@font-face {
|
|
font-family: 'nimbus_regular';
|
|
src: url('/private/assets/fonts/nimbussans-reg.woff2') format('woff2'),
|
|
url('/private/assets/fonts/nimbussans-reg.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* CARD */
|
|
|
|
body {
|
|
font-family: 'nimbus_regular', sans-serif;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
main .card {
|
|
text-align: center;
|
|
}
|
|
|
|
.card h1 {
|
|
font-family: 'Arial', sans-serif;
|
|
text-transform: uppercase;
|
|
font-size: 7rem;
|
|
margin-top: 0;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.card p {
|
|
margin-top: 0;
|
|
margin-bottom: 0.3rem;
|
|
}
|