@font-face {
    font-family: "Pixelify";
    src: url("assets/fonts/Pixelify_Sans/PixelifySans-VariableFont_wght.ttf");
    font-weight: 400 700;
    font-style: normal;
}

:root {
    font-family: "Pixelify";
    font-size: 25px;
    color: white;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    background-image: url("assets/images/bg-stone.jpg");
    backdrop-filter: blur(3px);
}

a {
    color: inherit;
    font-size: inherit;
}

main {
    overflow: auto;
    min-height: 100vh;
    max-width: 90%;
    margin-inline: auto;
}

footer {
    overflow: auto;
    max-width: 90%;
    margin-inline: auto;

    color: white;
    font-size: 15px;
}

footer nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0px;
    justify-content: center;
}

footer p {
    font-family: sans-serif;
    font-size: 12px;

    margin-top: 40px;
}