yay website

This commit is contained in:
sundae 2025-06-11 09:36:54 +03:00
parent 623e26a808
commit 4d44fd94a2
No known key found for this signature in database
585 changed files with 5066 additions and 0 deletions

234
_src/assets/css/blog.css Normal file
View file

@ -0,0 +1,234 @@
:root {
--avatar: 3rem;
}
@media (prefers-color-scheme: light) {
article {
& p[aria-label="Post warning"] {
border-color: currentColor;
background-color: var(--primary-dark-200);
color: var(--primary);
}
& [aria-label="Addendum"] {
box-shadow: inset 0 0 0 2px var(--primary);
border-image-source: linear-gradient(
45deg,
var(--primary),
var(--primary-600),
var(--primary)
);
background-color: var(--primary-400);
}
}
#posts {
& a {
border-color: var(--primary-600);
background-color: var(--primary-300);
color: var(--primary-dark-400);
&:is(:hover, :focus) {
background-color: var(--primary-500);
}
}
& p:not(:last-child) {
color: var(--primary-dark-700);
}
}
}
@media (prefers-color-scheme: dark) {
article {
& p[aria-label="Post warning"] {
border-color: currentColor;
background-color: var(--secondary-100);
color: var(--secondary);
}
& [aria-label="Addendum"] {
box-shadow: inset 0 0 0 2px var(--secondary);
border-image-source: linear-gradient(
45deg,
var(--secondary),
var(--secondary-600),
var(--secondary)
);
background-color: var(--secondary-400);
}
}
#posts {
& a {
border-color: var(--secondary-600);
background-color: var(--secondary-300);
color: var(--secondary-light-400);
&:is(:hover, :focus) {
background-color: var(--secondary-500);
}
}
& p:not(:last-child) {
color: var(--secondary-light-700);
}
}
}
article {
margin: 0 auto;
background-image: var(--paw);
background-position-x: center;
background-position-y: bottom;
background-size: 64px;
background-repeat: no-repeat;
background-origin: content-box;
font-family: "Rubik", sans-serif;
& time {
font-size: initial;
}
& p[aria-label="Post warning"] {
border-style: solid;
border-width: 2px;
border-radius: 0.4rem;
padding: 0.4rem 0;
font-size: 1.4rem;
font-weight: bold;
text-align: center;
&::before,
&::after {
content: "⚠️";
}
}
& aside,
[aria-label="Addendum"] {
margin: 1rem 0;
border-image-slice: 1;
border-image-width: 2px;
border-image-outset: 4px;
padding: 1rem;
background-image: var(--noise);
}
}
article > [aria-label="Addendum"] {
& > p:first-child {
display: flex;
justify-content: center;
margin-block-start: 0;
font-weight: bold;
}
}
article > [aria-label="Postscript"] {
margin: 0 0 auto auto;
padding: 2rem 0 4rem 0;
& p {
display: flex;
flex-direction: column;
transition: background-color var(--trans);
margin-top: inherit;
margin-left: inherit;
margin-right: var(--avatar);
border-radius: var(--round);
border-bottom-right-radius: 0;
width: fit-content;
padding: 0.8rem;
background-color: #0060df;
color: #fff;
font-family: "Rubik", sans-serif;
font-size: 0.8rem;
word-wrap: anywhere;
&:hover {
background-color: #3a76f0;
}
&:not(:last-of-type) {
margin-bottom: 1rem;
}
}
& p:has(img:nth-child(n + 2)) {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 40%), 1fr));
align-items: center;
gap: 0.8rem;
}
& p > img {
transition: height var(--trans), border-radius var(--trans),
background-color var(--trans);
border-radius: var(--round);
min-height: fit-content;
max-height: 300px;
}
& img:not(p > img) {
display: flex;
box-sizing: content-box;
margin: 0 0 0 auto;
border-radius: 100%;
width: var(--avatar);
height: var(--avatar);
}
}
#posts {
max-width: 75ch;
& ul {
display: flex;
flex-direction: column;
gap: 1rem;
margin: 0;
padding: 0;
list-style-type: none;
}
& li p {
margin-block-start: 0;
}
& a {
display: flex;
flex-direction: column;
overflow: scroll;
transition: border-color var(--trans);
border-style: solid;
border-width: 2px;
border-radius: var(--round);
padding: 0.8rem;
font-size: 1.125rem;
font-weight: bold;
text-decoration: none;
word-break: break-word;
&:is(:hover, :focus) {
border-color: currentColor;
}
& time,
p {
display: flex;
font-size: 1rem;
font-weight: normal;
}
}
}
@media screen and (max-width: 920px) {
#posts {
max-width: unset;
width: auto;
}
[aria-label="Postscript"] {
& p {
margin-right: unset;
& > img {
height: auto ;
max-height: var(--view);
}
}
}

129
_src/assets/css/default.css Normal file
View file

@ -0,0 +1,129 @@
@import url("/assets/css/variables.css");
:root {
--view: 18rem;
}
body {
font-family: sans-serif;
font-size: 100%;
margin: 0;
padding: 0;
}
main {
padding: 2rem 2rem 4rem calc(var(--view) + 2rem);
overflow: hidden;
}
article {
height: max-content;
padding: 2rem;
& p {
margin: 1rem 0;
&:last-child {
margin-bottom: 0;
}
}
}
/* Header */
header {
margin: 0 var(--view);
}
/* Navigation */
body > nav {
display: flex;
flex-direction: column;
overflow: hidden;
padding: 1rem;
position: fixed;
top: 0;
width: var(--view);
height: 100%;
}
body > nav ul {
margin: 0;
padding: 0;
}
nav > details {
font-size: 1.5rem;
}
body > nav ul li {
display: inherit;
flex-direction: row;
}
body > nav a {
display: flex;
font-size: 1.125rem;
font-weight: bold;
height: 2rem;
line-height: 2rem;
}
details {
cursor: pointer;
}
/* Navigation > Icons */
svg {
fill: currentColor;
stroke: currentColor;
stroke-width: 0;
}
body > nav li img {
border-radius: 100%;
}
body > nav a svg,
body > nav li img,
body > nav summary svg {
margin: 0 8px 0 8px;
width: 20px;
height: 20px;
}
body > nav li img,
body > nav a svg {
align-self: center;
}
body > nav details {
display: flex;
align-items: center;
}
body > nav > ul > svg {
overflow: visible;
text-anchor: start;
}
/* Images */
img[src*="/assets/img/pkmn/"] {
height: fit-content;
image-rendering: pixelated;
}
img[src*="/assets/img/flag/"] {
height: 32px;
}
ul:has(img, svg):not(article ul) {
list-style-type: none;
}
article {
max-width: 75ch;
}
iframe {
border: 0;
}

133
_src/assets/css/gallery.css Normal file
View file

@ -0,0 +1,133 @@
@media (prefers-color-scheme: light) {
#artworks {
& a {
transition: color var(--trans), background-color var(--trans),
border-color var(--trans);
& figure {
color: var(--primary-dark-400);
border-color: var(--primary-600);
background-color: var(--primary-300);
& time {
color: var(--primary-dark-500);
}
& figcaption {
color: var(--primary-dark-500);
}
&:is(:hover, :focus) {
border-color: currentColor;
background-color: var(--primary-500);
}
}
}
}
}
@media (prefers-color-scheme: dark) {
#artworks {
& a {
transition: color var(--trans), background-color var(--trans),
border-color var(--trans);
& figure {
color: var(--secondary-light-400);
border-color: var(--secondary-600);
background-color: var(--secondary-300);
& time {
color: var(--secondary-light-500);
}
& figcaption {
color: var(--secondary-light-500);
}
&:is(:hover, :focus) {
border-color: currentColor;
background-color: var(--secondary-500);
}
}
}
}
}
#artworks {
& ul {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
padding: 0;
margin: 0;
gap: 1rem;
}
& h2 {
margin: 2rem 0;
font-size: 2rem;
&:first-of-type {
margin-top: 0;
}
}
& a {
display: block;
text-decoration: unset;
& figure {
margin: 0;
padding: 0.4rem;
border-width: 2px;
border-style: solid;
border-radius: 0.4rem;
& img {
display: flex;
height: 12rem;
width: 100%;
border-bottom: unset;
object-fit: contain;
border-radius: inherit;
}
& figcaption {
font-family: Urbanist, sans-serif;
font-size: 1.2rem;
}
}
}
}
#gallery article {
& figure {
& time {
display: flex;
font-weight: bold;
}
& a {
width: fit-content;
& img {
min-height: fit-content;
max-height: 18rem;
object-fit: contain;
border-radius: inherit;
border-style: inherit;
border-width: inherit;
border-color: inherit;
}
}
}
& > section {
margin-top: 1rem;
&:has(figure:nth-child(n + 2)) {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
}
}

179
_src/assets/css/home.css Normal file
View file

@ -0,0 +1,179 @@
@keyframes jump {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-4px);
}
}
@media (prefers-color-scheme: light) {
#intro span[id]::before {
text-shadow: 0 0 1rem var(--primary-dark-500);
}
#collection {
& a:is(:hover, :focus) {
box-shadow: 0 0 0 1px currentColor;
background-color: var(--primary-500);
}
& img {
box-shadow: 0 0 0 1px
color-mix(in lch, transparent, var(--primary-dark-500) 30%);
}
}
}
@media (prefers-color-scheme: dark) {
#intro span[id]::before {
text-shadow: 0 0 1rem var(--secondary-900);
}
#collection {
& a:is(:hover, :focus) {
box-shadow: 0 0 0 1px currentColor;
background-color: var(--secondary-500);
}
& img {
box-shadow: 0 0 0 1px
color-mix(in lch, transparent, var(--secondary-500) 70%);
}
}
}
#pkmn {
display: flex;
flex-wrap: wrap;
background-image: url("/assets/img/pkmn/bg/box.png");
border-radius: 5px;
width: max-content;
border-bottom-color: #78a068;
border-left-color: #c8f8c0;
border-right-color: #78a068;
border-top-color: #c8f8c0;
border-width: 3px;
border-style: solid;
& img:hover {
filter: drop-shadow(0 -2px 0 #fff) drop-shadow(0 2px 0 #fff)
drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff)
drop-shadow(0 2px 3px #0006);
animation: jump 200ms infinite alternate;
}
}
body [id]:not(:nth-child(1)) ul {
display: flex;
flex-wrap: wrap;
}
#agender {
background-image: linear-gradient(
black 0 14.28%,
silver 0 28.57%,
white 0 42.85%,
#a3fa73 0 57.14%,
white 0 71.42%,
silver 0 85.71%,
black 0
);
}
#aromantic {
background-image: linear-gradient(
#0a2 20%,
#7d6 0 40%,
white 0 60%,
darkgray 0 80%,
black 0
);
}
#pansexual {
background-image: linear-gradient(#f09 33.33%, gold 0 66.66%, deepskyblue 0);
}
#agender::before {
content: "agender";
}
#aromantic::before {
content: "aromantic";
}
#pansexual::before {
content: "pansexual";
}
#intro span[id]::before {
width: inherit;
height: inherit;
position: absolute;
z-index: -1;
}
#intro span[id] {
font-size: 2rem;
color: transparent;
background-clip: text;
background-size: 2rem;
background-position: center;
background-repeat: repeat-x;
}
#intro {
& p {
font-family: "Urbanist", sans-serif;
font-size: 1.8rem;
}
}
#collection {
display: inherit;
gap: 1rem;
& ul {
margin: 0;
padding: 0;
justify-content: center;
}
& li {
display: flex;
& a {
padding: 8px;
transition: background-color var(--trans);
text-decoration: none;
}
& span {
display: flex;
width: 14ch;
text-align: center;
justify-content: center;
}
}
& div:has(img) {
margin: 0 auto;
width: fit-content;
}
.music img {
height: 48px;
}
}
#badges {
& ul {
gap: 1rem;
padding: 0;
list-style-type: none;
}
& a {
display: flex;
padding: inherit;
margin: 0;
}
& a:is(:hover, :focus) img {
filter: drop-shadow(4px 6px 0 #0006);
transform: translateY(-4px);
transition: 0.3s;
}
}
#collection div:has(img)::after {
content: url("/assets/img/icon/shortcut.png");
display: flex;
z-index: 1;
position: absolute;
width: 24px;
height: 24px;
margin: -1.5rem 0 0 -0.5rem;
pointer-events: none;
}
@media screen and (max-width: 920px) {
#collection {
display: flex;
flex-direction: column;
}
}

26
_src/assets/css/index.css Normal file
View file

@ -0,0 +1,26 @@
@import url("/assets/css/variables.css");
#index {
width: 100%;
background-color: rgb(255, 190, 0);
background-image: url("/assets/img/theme/citrus/sundae.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
margin: 0;
padding: 0;
main {
display: flex;
}
a img {
width: 100%;
transition: var(--trans);
transform: scale(0.9);
}
a img:hover {
transform: scale(0.95) translateY(-1rem);
}
}

445
_src/assets/css/me.css Normal file
View file

@ -0,0 +1,445 @@
@media (prefers-color-scheme: light) {
article {
border-color: var(--primary-300);
background-color: var(--primary-200);
color: var(--primary-dark-300);
& aside {
box-shadow: inset 0 0 0 2px var(--primary-500);
background-color: var(--primary-300);
}
& figure {
color: var(--primary-dark-400);
border-color: var(--primary-600);
background-color: var(--primary-300);
}
& s,
u {
text-decoration-color: color-mix(in lch, red, var(--primary-500) 20%);
}
& h3 a {
color: var(--primary-dark-300);
&:hover {
background-color: var(--primary-dark-300);
color: var(--primary);
}
}
& code:not(pre *) {
background-color: var(--primary-400);
}
& pre {
transition: background-color var(--trans), border-color var(--trans);
background-color: var(--primary-100);
&:hover {
border-color: var(--primary);
background-color: var(--primary-400);
}
}
& pre,
code {
border-color: var(--primary-400);
}
}
body {
background-color: var(--primary-100);
color: var(--primary-dark-300);
& > nav {
border-right: 1px solid var(--primary);
&::before {
background-color: var(--primary);
}
&::after {
background-color: var(--primary);
}
& a {
background-color: var(--primary);
}
}
&::after {
background-color: var(--primary);
}
& details {
box-shadow: inset 0 0 0 2px var(--primary);
background-color: white;
color: var(--primary);
}
& details[open] {
box-shadow: inset 0 0 0 2px var(--primary);
background-color: var(--primary-300);
color: var(--primary-dark-400);
& summary {
border-color: var(--primary);
background-color: var(--primary-600);
}
& a {
color: var(--primary-100);
&[aria-current] {
box-shadow: 0 0 0 2px var(--primary-600);
background-color: var(--primary-100);
color: var(--primary-dark-500);
}
}
}
}
}
@media (prefers-color-scheme: dark) {
article {
border-color: var(--secondary-300);
background-color: var(--secondary-200);
color: var(--secondary-light-300);
& aside {
box-shadow: inset 0 0 0 2px var(--secondary-500);
background-color: var(--secondary-300);
}
& figure {
color: var(--secondary-light-400);
border-color: var(--secondary-600);
background-color: var(--secondary-300);
}
& s,
u {
text-decoration-color: color-mix(in lch, red, var(--secondary-500) 20%);
}
& h3 a {
color: var(--secondary-light-300);
&:hover {
background-color: var(--secondary-light-300);
color: var(--secondary);
}
}
& code:not(pre *) {
background-color: var(--secondary-400);
}
& pre {
transition: background-color var(--trans), border-color var(--trans);
background-color: var(--secondary-100);
&:hover {
border-color: var(--secondary);
background-color: var(--secondary-400);
}
}
& pre,
code {
border-color: var(--secondary-400);
}
}
body {
background-color: var(--secondary-100);
color: var(--secondary-light-200);
& > nav {
border-right: 1px solid var(--secondary);
&::before {
background-color: var(--secondary);
}
&::after {
background-color: var(--secondary);
}
& a {
background-color: var(--secondary);
}
}
&::after {
background-color: var(--secondary);
}
& details {
box-shadow: inset 0 0 0 2px var(--secondary);
background-color: var(--secondary-100);
color: var(--secondary);
}
& details[open] {
box-shadow: inset 0 0 0 2px var(--secondary);
background-color: var(--secondary-300);
color: var(--secondary-light-200);
& summary {
border-color: var(--secondary);
background-color: var(--secondary-600);
}
& a {
color: var(--secondary-200);
&[aria-current] {
box-shadow: 0 0 0 2px var(--secondary);
background-color: var(--secondary-200);
color: var(--secondary-light-500);
}
}
}
}
}
body {
font-family: "Rubik", sans-serif;
& article {
border-style: solid;
border-width: 2px;
border-radius: var(--round);
& hr {
margin: 2rem 0;
}
& a {
font-weight: 500;
}
& s {
text-decoration-style: line-through;
text-decoration-thickness: 0.1em;
}
& ul {
& li {
margin: 0;
& p {
margin: 0;
}
}
}
& u {
text-decoration-style: double;
text-decoration-thickness: 2px;
}
& em {
font-weight: 200;
}
& p {
word-wrap: break-word;
}
& code:not(pre *) {
padding: 0 0.2rem;
}
& pre {
display: flex;
width: auto;
overflow: scroll;
padding: 0.5rem;
white-space: pre-wrap;
word-break: break-word;
}
& pre,
code:not(pre *) {
transition: background-color var(--trans), border-color var(--trans);
border-style: solid;
border-width: 2px;
border-radius: var(--round);
font-weight: bold;
}
& h3 {
font-size: 1.6rem;
margin: 0;
& a {
display: inline-block;
transition: color var(--trans), background-color var(--trans);
border-radius: inherit;
height: max-content;
padding: 0 0.4rem;
}
}
& aside {
float: right;
border-radius: var(--round);
width: 66%;
}
& figure {
transition: var(--trans);
margin: 0;
border-style: solid;
border-width: 2px;
padding: 0.8rem;
border-radius: var(--round);
display: flex;
flex-direction: column;
}
}
& nav {
gap: 0.8rem;
& details {
gap: 0.8rem;
border-radius: var(--round);
font-weight: bold;
}
& details > summary {
display: flex;
align-items: center;
justify-content: center;
padding: 0 1.4rem 0 0;
height: 2rem;
& > svg {
transform: rotate(0deg);
transition: transform var(--trans);
}
}
& details[open] > summary {
margin-bottom: 0.4rem;
border-style: solid;
border-width: 2px;
border-radius: var(--round);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
& svg {
transform: rotate(45deg);
}
}
& a {
margin: 0 1rem;
margin-bottom: 0.4rem;
border-radius: var(--round);
}
}
}
body > nav::before,
body::after {
z-index: -1;
content: "";
position: absolute;
mask-image: url("/assets/img/theme/sundae_sit-lines.png");
mask-repeat: no-repeat;
margin: 0;
width: inherit;
height: inherit;
pointer-events: none;
}
body > nav::before {
bottom: 0;
left: 0;
mask-size: 150%;
mask-position-x: -10px;
mask-position-y: 90%;
}
body::after {
content: none;
mask-size: 100%;
width: 100%;
height: 100vw;
mask-position-x: 0;
mask-position-y: bottom;
}
main {
display: flex;
flex-direction: column;
gap: 1rem;
width: auto;
}
summary::marker {
content: none;
}
/* Mobile view */
@media screen and (max-width: 920px) {
body > nav {
position: initial;
width: 100%;
}
main {
padding: 1rem;
}
main > section {
flex-direction: column;
}
main > section {
width: initial;
}
article {
max-width: initial;
width: auto;
}
body > nav::before {
content: none;
}
body > nav {
flex-direction: row;
top: 0;
border-right: 0;
width: 100%;
& details {
height: fit-content;
}
& details {
width: 100%;
}
}
body::after {
content: "";
}
}
@media screen and (max-width: 400px) {
article {
padding: 1rem !important;
}
body > nav {
flex-direction: column;
justify-content: start;
& details[open] {
width: 100%;
}
}
}

92
_src/assets/css/reset.css Normal file
View file

@ -0,0 +1,92 @@
/* https://piccalil.li/blog/a-more-modern-css-reset/ A (more) Modern CSS Reset by Andy Bell */
/* Box sizing rules */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Prevent font size inflation */
html {
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
text-size-adjust: none;
}
/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
margin-block-end: 0;
margin-block-start: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
list-style: none;
}
/* Set core body defaults */
body {
min-height: 100vh;
line-height: 1.5;
}
/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
line-height: 1.1;
}
/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
text-wrap: balance;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
text-decoration-skip-ink: auto;
color: currentColor;
}
/* Make images easier to work with */
img,
picture {
max-width: 100%;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
font-family: inherit;
font-size: inherit;
}
/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
min-height: 10em;
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
scroll-margin-block: 5ex;
}

View file

@ -0,0 +1,52 @@
:root {
--primary: rgb(255, 190, 0);
--secondary: rgb(255, 100, 0);
--primary-100: color-mix(in lch, var(--primary), white 90%);
--primary-200: color-mix(in lch, var(--primary), white 80%);
--primary-300: color-mix(in lch, var(--primary), white 70%);
--primary-400: color-mix(in lch, var(--primary), white 60%);
--primary-500: color-mix(in lch, var(--primary), white);
--primary-600: color-mix(in lch, var(--primary), white 40%);
--primary-700: color-mix(in lch, var(--primary), white 30%);
--primary-800: color-mix(in lch, var(--primary), white 20%);
--primary-900: color-mix(in lch, var(--primary), white 10%);
--primary-dark-100: color-mix(in lch, var(--primary), black 90%);
--primary-dark-200: color-mix(in lch, var(--primary), black 80%);
--primary-dark-300: color-mix(in lch, var(--primary), black 70%);
--primary-dark-400: color-mix(in lch, var(--primary), black 60%);
--primary-dark-500: color-mix(in lch, var(--primary), black);
--primary-dark-600: color-mix(in lch, var(--primary), black 40%);
--primary-dark-700: color-mix(in lch, var(--primary), black 30%);
--primary-dark-800: color-mix(in lch, var(--primary), black 20%);
--primary-dark-900: color-mix(in lch, var(--primary), black 10%);
--secondary-light-100: color-mix(in lch, var(--secondary), white 90%);
--secondary-light-200: color-mix(in lch, var(--secondary), white 80%);
--secondary-light-300: color-mix(in lch, var(--secondary), white 70%);
--secondary-light-400: color-mix(in lch, var(--secondary), white 60%);
--secondary-light-500: color-mix(in lch, var(--secondary), white);
--secondary-light-600: color-mix(in lch, var(--secondary), white 40%);
--secondary-light-700: color-mix(in lch, var(--secondary), white 30%);
--secondary-light-800: color-mix(in lch, var(--secondary), white 20%);
--secondary-light-900: color-mix(in lch, var(--secondary), white 10%);
--secondary-100: color-mix(in lch, var(--secondary), black 90%);
--secondary-200: color-mix(in lch, var(--secondary), black 80%);
--secondary-300: color-mix(in lch, var(--secondary), black 70%);
--secondary-400: color-mix(in lch, var(--secondary), black 60%);
--secondary-500: color-mix(in lch, var(--secondary), black);
--secondary-600: color-mix(in lch, var(--secondary), black 40%);
--secondary-700: color-mix(in lch, var(--secondary), black 30%);
--secondary-800: color-mix(in lch, var(--secondary), black 20%);
--secondary-900: color-mix(in lch, var(--secondary), black 10%);
--trans: 300ms;
--round: 16px;
--paw: url("/assets/img/theme/cherry/pawprint.svg");
}
@font-face {
font-family: Rubik;
src: url("/assets/fonts/Rubik.ttf") format("truetype");
}
@font-face {
font-family: Urbanist;
src: url("/assets/fonts/Urbanist-Bold.ttf") format("truetype");
}