body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduce the gap between columns */
    padding: 20px;
    background-image: url('https://picsum.photos/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
}
header {
    text-align: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5); /* Add background for the header */
    padding: 10px;
    border-radius: 5px;
}
.container-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Create 4 columns for the containers */
    gap: 10px; /* Reduce the gap between columns */
}
.column {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduce the gap between containers */
    flex: 1;
}
.container {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: fit-content; /* Ensure the container height adjusts to its content */
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: black; /* Change header color to black */
}
.content {
    display: block;
    margin-top: 10px;
}
.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ensure 4 columns in the container */
    gap: 10px;
}
.link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px;
    text-decoration: none;
    color: black;
    width: 100%; /* Ensure the links take up full width */
}
.link img {
    width: 32px;
    height: 32px;
}
.link span {
    text-align: center;
}
.link:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}
