55 lines
793 B
CSS
55 lines
793 B
CSS
@font-face {
|
|
font-family: Banquise;
|
|
src: url(assets/Banquise-Regular.woff);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Dymo;
|
|
src: url(assets/Dymo.ttf);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Erika;
|
|
src: url(assets/Erika-Type.ttf);
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
main {
|
|
background-color: #413f43;
|
|
background-image: url(assets/background.jpg);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
|
|
main h1, main h2 {
|
|
font-family: Banquise;
|
|
color: white;
|
|
}
|
|
|
|
main h1 {
|
|
font-size: 8em;
|
|
}
|
|
|
|
nav, footer, aside {
|
|
background: #d7d7d7;
|
|
background: url(assets/paper.avif);
|
|
padding: 5px;
|
|
font-family: Erika;
|
|
}
|
|
|
|
nav a, footer a, aside a {
|
|
font-family: Dymo;
|
|
font-size: 3em;
|
|
}
|
|
|