@font-face {
    font-family: 'c64';
    src: url('C64_Pro_Mono-STYLE.woff2') format('woff2');
  }
body {
    font-family: c64;
    background-color: #7895fb;
    color: #2b51e4;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30em, 1fr)); /* Automatically adjusts the number of columns */
    gap: 0.5em;
    color: #b3b3b3;
}
.category {
    border: 1px solid #ccc;
    background-color: #2b51e4;
    margin: 0px 0;
    padding: 10px;
    border-radius: 5px;
}
.category-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}
.arrow {
    margin-right: 5px;
    transition: transform 0.2s ease;
}
.category-content {
    display: none;
    margin-top: 10px;
    padding-left: 15px;
}

.link {
    margin: 10px;
}

a {
    color: #7895fb;
    text-decoration: none;
}

.link a:hover {
    color: #2b51e4;
}

.link:hover {
    background-color: #7895fb;
}
