46 lines
725 B
CSS
46 lines
725 B
CSS
@font-face {
|
|
font-family: 'DMSerif';
|
|
src: url('https://media.everypizza.im/fonts/DMSerifText-Regular.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Atkinson Hyperlegible';
|
|
src: url('https://media.everypizza.im/fonts/AtkinsonHyperlegibleNext-VariableFont_wght.ttf');
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: DMSerif;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 60px
|
|
}
|
|
|
|
body {
|
|
background-color: #F1E7E7;
|
|
font-family: 'Atkinson Hyperlegible';
|
|
padding-left: 15%;
|
|
padding-right: 15%
|
|
}
|
|
|
|
.hoverblur {
|
|
filter: blur(5px);
|
|
transition: filter 0.3s;
|
|
}
|
|
|
|
.hoverblur:hover {
|
|
filter: blur(0);
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: #021526;
|
|
color: pink;
|
|
}
|
|
a {
|
|
color: pink;
|
|
}
|
|
a:visited {
|
|
color: hotpink;
|
|
}
|
|
}
|