        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {

            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #f5f5f5;
            color: #4a3a8a; 
            font-weight: 100;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero {
            margin-left: 5rem;
            text-align: left;
            max-width: 80ch;

            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        h1 {
            font-size: 3rem; 
            font-weight: 200;
            line-height: 1.2;
            margin-bottom: 2rem;
            letter-spacing: -0.05em;
            font-stretch: condensed;
        }

        #page-foot {
            margin-top: auto;
            display: flex;
            justify-content: center;
            width: 100%;
            height: 50px;
        }

        #page-foot p {
            font-size: 0.8rem;
        }

        p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;

            letter-spacing: -0.05em;
        }

        .choice {
            list-style-type: none;
            display: flex;
            gap: 1em;
        }

        .choice a {
            font-size: 1.3rem;
        }

        .choice a:hover {
            color:cadetblue;
        }

        @media (max-width: 768px) {
            .hero {
                margin-left: 1rem;
                margin-right: 1rem;
            }
            h1 {
                font-size: 3.5rem;
            }
            p {
                font-size: 1.25rem;
            }
        }
