body {
            margin: 0;
            background-color: bisque;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            text-align: center;
        }

        nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1rem;
        }

        nav a {
            color: inherit;
            text-decoration: none;
        }

        main {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        footer {
            margin-top: auto;
            padding: 1rem;
        }
        h1, h3, p {
            font-family: "Coiny", system-ui;
            font-weight: 400;
            font-style: normal;
        }
