body {
            background-color: #0067b1;
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 20px;
            color: white;
            text-align: center;
        }
        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1600px;
            margin: auto;
        }
        .container2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 800px;
            text-align: center;
            margin: auto;
        }
        .category {
            padding: 10px;
        }
        .category h2 {
            text-align: center;
            border-bottom: 2px solid white;
            padding-bottom: 5px;
        }
        .button {
            display: grid;
            grid-template-columns: 40px auto;
            align-items: center;
            background-color: black;
            color: white;
            text-decoration: none;
            padding: 13px;
            margin: 10px 0;
            border-radius: 8px;
            transition: transform 0.2s;
            font-size: 130%;
            text-align: left;
        }
        .button2 {
            display: grid;
            grid-template-columns: 40px auto;
            align-items: center;
            background-color: rgb(255, 255, 255);
            color: rgb(0, 0, 0);
            text-decoration: none;
            padding: 10px;
            margin: 10px 0;
            border-radius: 8px;
            transition: transform 0.2s;
            font-size: 130%;
             text-align: center;
        }
        .button img {
            width: 30px;
            height: 30px;
            margin: auto;
        }
        .button2 img {
            width: 30px;
            height: 30px;
            margin: auto;
        }
        .button span {
            text-align: left;
        }
        .button2 span {
            text-align: left;
        }
        .button:hover {
            transform: scale(1.05);
        }
        .button2:hover {
            transform: scale(1.05);
        }
        .logo {
            max-width: 250px;
            margin: 0 auto 20px;
        }
        footer {
            margin-top: 15px;
            font-size: 14px;
        }