/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.footer {
            text-align: center;
            margin-top: 20px;
            font-size: 16px;
        }

        .footer a {
            color: #0066cc;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

.logo {
    position: absolute;
    top: 0;
    left: 0;
}

.logo img {
    width: 120px; /* Adjust the size of the logo */
    height: auto;
}

.header h1 {
    font-size: 2.2em;
    margin: 0;
    color: #333;
}

.header h2 {
    font-size: 1.2em;
    margin: 0;
    color: #666;
}

/* Menu Styles */
.menu {
    padding: 10px 0;
}

.menu h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #007BFF;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    margin-bottom: 20px;
}

/* Button Styles */
.menu a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    margin: 5px 0;
    border-radius: 8px;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.menu .yellow {
    background: #FFD700; /* Yellow */
}

.menu .yellow:hover {
    background: #FFC300;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.5);
}

.menu .gray {
    background: #808080; /* Gray */
}

.menu .gray:hover {
    background: #696969;
    box-shadow: 0px 4px 8px rgba(128, 128, 128, 0.5);
}

.menu .blue {
    background: #007BFF; /* Blue */
}

.menu .blue:hover {
    background: #0056b3;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header h2 {
        font-size: 1em;
    }

    .menu h3 {
        font-size: 1.3em;
    }

    .menu a {
        font-size: 0.9em;
    }

    .logo img {
        width: 100px; /* Smaller logo for mobile */
    }
}