:root{ 
    --font-montserrat:'Montserrat', sans-serif; 
    --font-open-sans: 'Open Sans',  sans-serif; 
}         
        body {
            background-color: yellow;
            color: black; 
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
    font-family: var(--font-open-sans)
        }
        h1 {
            font-size: 32px;
            margin: 0;
        }
        .line {
            width: 50%;
            height: 2px;
            background-color: black;
            margin: 10px auto;
        }
        .content {
            font-size: 18px;
            max-width: 600px;
            margin-top: 10px;
        }
        .footer {
            font-size: 18px;
            position: absolute;
            bottom: 40px;
            right: 40px;
            text-align: right;
        }
        a {
            color: black;
            text-decoration: none;
            font-weight: bold;
        }
        a:hover {
            text-decoration: underline;
        }



        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
                margin-top: -20px;
            }

        .content {
            padding-left: 10px;
            padding-right: 10px;
            font-size: 16px;
        }

        .footer { 
            font-size: 14px;
            bottom: 6px;
            right: 6px; 
        }


        }    