body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.category {
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.link-item:hover {
    transform: translateY(-5px);
}

.link-item img {
    width: 155px;
    height: 155px;
    object-fit: contain;
}

.link-item span {
    padding: 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}