body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header {
    text-align: center;
    margin: 20px;
}
header a {
    text-decoration: none;
}
header img {
    width: 150px;
    height: auto;
    cursor: pointer;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px;
    padding: 10px;
}
.menu-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    width: 150px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.menu-item img {
    width: 80%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}
.menu-item h2 {
    font-size: 1em;
    margin: 0;
    padding: 0 10px;
    color: #333;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.index-link {
    margin-top: 10px;
    font-size: 0.8em;
    color: #007bff;
    text-decoration: none;
}
.index-link:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    width: 100%;
    margin-top: 20px;
    position: relative;
}
footer p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #555;
}
footer a {
    color: #007bff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.content {
    max-width: 800px;
    margin: 20px;
    text-align: left;
}