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

        body, html {
            height: 100%;
            width: 100%;
            font-family: 'Cormorant Garamond', Georgia, serif;
            background: radial-gradient(circle, #006361 0%, #002B2A 55%, #000D0C 100%);
            color: #FFFFFF;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        
        .sqcentral {
            width: 600px;
            height: 600px;
            padding: 45px;
            border: none;
            background: rgba(0, 13, 12, 0); 
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        h1 {
            font-size: 2.0rem;
            letter-spacing: 4px;
            color: #FFFFFF; 
            margin-bottom: 5px;
            text-transform: uppercase;
            font-weight: 400;
        }

        .subtitle {
            font-size: 1.05rem;
            letter-spacing: 3px;
            color: #8A9Aad;
            text-transform: uppercase;
            margin-bottom: 35px;
            font-weight: 300;
        }

        .divider {
            width: 60px;
            height: 1px;
            background-color: #8A9Aad;
            margin-bottom: 30px;
        }

        p {
            font-size: 1.08rem;
            line-height: 1.6;
            color: #ced5de;
            text-align: justify;
            margin-bottom: 35px;
            font-weight: 300;
        }
        .spacer {
            line-height: 1.6;
            margin-bottom: 5px;
        }

        footer {
            font-size: 0.84rem;
            letter-spacing: 1px;
            color: #64748B; 
            line-height: 1.6;
            font-weight: 300;
            text-align: center;
        }

        footer a {
            color: #8A9Aad;
            text-decoration: none;
        }
        footer a:hover {
            color: #FFFFFF;
        }