 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            color: #6D6C69;  //70%black
            text-align: center;
            background-image: image-set(
                url('bg.webp') type('image/webp'),
                url('bg.png') type('image/png')
            );
            background-size: 100% auto;
            background-position: top center;  
            background-repeat: no-repeat;
            background-color: white;
        }


        .header {
            position: relative;
            width: 100%;
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 10px;
            padding-top:35px;
        }
 
        .header h1 {
            font-size: 24px;
            font-weight: bold;
            color: #6D6C69;
        }

        .header p {
            font-size: 15px;
            font-weight:bold;
            max-width: 95%;
            color: #6D6C69;
            margin-top:8px;
        }
        
        .header .header-links {
            display: flex;
            gap: 5px;
            margin-top: 10px;
        }
        

        .header a {
            display: inline-flex;
            flex-direction: row-reverse;
            align-items: center;
            padding: 10px 20px;
            color: white;
            height:100px;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            transition: background 0.3s;
            background-color: transparent;
            border:none;
            margin-right:20px;
        }
        
        .header .icon {
            width: 12px;
            height: 12px;
            margin-right: 5px;
        }

        .header a:hover {
            background-color: #fefdbd;
        }

         .title {
            text-align: left;
            padding-left: 30px;
            padding-top: 5px;
            padding-bottom: 10px;
        }
        
        .title h2 {
            font-weight: bold;
            font-size: 20px;
            color:black;
        }
        
        .title p {
            font-size: 14px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            padding: 0 20px;
            gap: 10px;
        }

        .grid a {
            text-decoration: none;
            color: #6D6C69;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align items to the start */
        }
        
        .grid-item {
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: bold;
            border-radius: 10px;
            text-align: left;
            height: 48px;
            width: 100%;
            border: 2.5px solid #6D6C69;
            padding: 0 15px;
            transition: background-color 0.3s, color 0.3s;
    }

    .grid-item i {
        font-size: 28px;
        color: #6D6C69;
        margin-right: 10px;
        width: 28px; /* Fixed width for icons */
        text-align: center; /* Center the icon within the fixed width */
        transition: color 0.3s;
    }

    .grid-item:hover {
        background-color: #fefdbd;
    }

    .grid-item span {
        flex-grow: 1; /* Allow the text to take up the remaining space */
    }
   
        .bottom-banner {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            padding: 10px 0;
            text-align: center;
            background-color: black;
        }

        .bottom-banner nav {
            display: flex;
            justify-content: space-around;
        }

        .bottom-banner nav a {
            color: white;
            text-decoration: none;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .bottom-banner nav a.active {
            color: #ffe207;
            font-weight: bold;
            font-size: 14px;
        }

        .bottom-banner img {
            width: 25px;
            height: 25px;
            margin-bottom: 3px;
        }
        
         .logo {
            width: 150px;
            align-items: center;  
            top:45px;
        }


        .hidden {
            display: none;
        }