        body {
            margin: 0;
            background: black;
            color: white;
            font-family: Arial, sans-serif;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            line-height: 1.5em;

            /*height: 95vh;*/
            text-align: left;
        }

        h1 {
            font-size: 6vw;
            margin: 0;
            line-height: 1;
            text-align: center;
            color: yellow;
        }
        
        h2 {
            font-size: 4vw;
            margin: 0;
            line-height: 1;
            max-width: 650px;
            text-align: center;
            color: yellow;

        }

        p {
            margin-top: 1rem;
            font-size: 1.2rem;
            max-width: 650px;
            opacity: 0.8;
        }
        

        a:link {
            color: yellow;
            text-decoration: none;
        }

        /* visited link */
        a:visited {
            color: yellow;
            text-decoration: none;
        }

        /* mouse over link */
        a:hover {
            color: white;
            text-decoration: none;
        }

        /* selected link */
        a:active {
            color: white;
            text-decoration: none;
        }
        strong {
            color: yellow;
        }
        .voice p {
            font-size: 2rem;
            line-height: 2rem;
        }

        @media (max-width: 768px) {

            h1 {
                 font-size: 6rem;
             }

             h2 {
                  font-size: 2rem;
                  padding-left: 1rem;
                  padding-right: 1rem;
             }
              .voice p {
            font-size: 1.2rem;
            }
        }