@charset "utf-8";
/* CSS Document */

 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 40px 20px;
            background-color: #f9f9f9;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            margin-bottom: 10px;
            color: #222;
            text-align: center;
        }

        .sub-header {
            font-size: 1.2rem;
            font-weight: 600;
            color: #555;
            margin-bottom: 25px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* The Main Shell with border and radius */
        .main-content {
            width: 100%;
            max-width: 984px; /* Adjust width to your preference */
            min-height: 300px; /* Ensures it has shape even when empty */
            padding: 30px;
            border: 2px solid #d3d3d3; 
            border-radius: 12px;       
            background-color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            box-sizing: border-box;
        }

        .footer-text {
            margin-top: 30px;
            max-width: 600px;
            /*text-align: center;*/
            line-height: 1.6;
            color: #666;
        }

        /* Top Banner area */
        .banner-wrapper {
            max-width: 430px;
        }

.homelink{
text-align: center;
}

a,
a:visited,
a:hover,
a:active,
a:focus {
    color: #3498db; /* pick your color */
    text-decoration: none; /* optional */
}
