@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Nova+Square&display=swap');

h1 {
    font-family: "Boldonse", system-ui, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

p {
    font-family: "Nova Square", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/scanlines.png");
    background-repeat: repeat;
    color: #d8971d;
}

main {
    border: 3px solid #555;
    border-radius: 28px;
    padding: 12px;
    background-color: #111;
}

img {
    border-radius: 16px;
    display: block;
    width: 100%;
    height: auto;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

