
        body {
            background: #fff;
            color: #234;
            font-family: 'Roboto Condensed', Arial, sans-serif;
            font-size: 18px;
            margin: 0;
            padding: 0;
        /*   background: url('/111.png') no-repeat center center; 
           background-size: cover; */
        }
        /* Sticky Top Navigation */
        .top-nav {
            background: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            position: sticky; /* Make it stick */
            top: 0;           /* Stick to the top of the page */
            z-index: 1000;    /* Ensure it appears above other content */
            width: auto;      /* Full waidth */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow below the nav */
        }

        .top-nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 0;
            font-size: 18px;
            padding: 1px;
        }

        .top-nav a:hover {
            text-decoration: underline;
        }
        header {
            background: #245;
            color: #fff;
            text-align: center;
            padding: 1px 0;
        }
                header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        header p {
            font-size: 18px;
        }
         /* Adjust margin as needed */
        .context, .update, .main-menu {
            padding: 20px;
            margin: 0 auto; /* Control Margin Between Divs */
            max-width: 1200px;  /* Control web page Zise  */
            border-radius: 8px;
        }
        .context {
            background: #d0d6d9;
        }
        .update {
            background: #245;
            color: #fff;
        }
.main-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #966;
    padding: 24px 0;
    color: #d0d6d9;
}

/* Link styles */
a:link, a:visited {
    color: #257;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: #920;
    text-decoration: underline;
}

/* Navigation Links Styles */
ul.Nav_Main_Ul {
    list-style: none;
    padding: 0;
    font-size: 28px;
}

ul.Nav_Main_Ul a:link, ul.Nav_Main_Ul a:visited {
    color: #ccc;
    text-decoration: none;
}

ul.Nav_Main_Ul a:hover, ul.Nav_Main_Ul a:active, ul.Nav_Main_Ul a:focus {
    color: #fa0;
    text-decoration: underline;
}

/* Social icons container */
.Social_icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.Social_icons a {
    margin: 0 10px;
}

.Dad_Social_icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease-in-out;
}

.Dad_Social_icon:hover {
    transform: scale(1.1);
}

        footer {
            background: #245;
            color: #fff;
            text-align: center;
            padding: 10px;
        }
        .update-main {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .update-class {
            
            flex: 1;
            min-width: 200px;
            font-size: 17px;
            line-height: 1.3em;
            padding: 24px;
            border-radius: 8px;
            margin: 10px 0;
        }
        .update-class-a {
            background: #979;
        }
        .update-class-b {
            background: #69c;
        }
        .update-class-c {
            background: #787;
        }
        .update-class h3 {
            margin-bottom: 10px;
        }