:root {
    --md-ref-typeface-brand: 'Open Sans', sans-serif;
    --md-ref-typeface-plain: 'EB Garamond', sans-serif;

    font-family: var(--md-ref-typeface-plain);


    color: var(--md-sys-color-on-surface);
    text-wrap: pretty;

}

body {
    background: rgb(15 20 22);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    box-sizing: border-box;
    padding: 1em 0.5em;
    overflow: auto;
    justify-content: flex-start;
    font-size: 1.2rem;
    align-items: center;
    gap: 2em;
    transition: background 1s ease;
}

.container {
    background-color: #13191c;
    padding: 1em;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    height: 90%;
    width: 90%;
    overflow: auto;
    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h4, h3{
    font-weight: 400;
}

.line {
    width: 2px;
    height: 1em;
    margin: 0;
}

.section {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: transparent;
    gap: 1em;
    overflow: visible;
    z-index: 1;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5em 1em;
    border-radius: 12px;
    align-items: center;
    cursor: pointer;
    gap: 0.1em;
}

.section>.card {
    background-color: rgba(0, 0, 0, 0.25);
    font-size: 1.1em;
}

.item {
    /* Styling for each item in the grid */
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}

.biggest {
    font-size: 1.2em;
}

.big {
    font-size: 1em;
}

.small {
    font-size: 0.9em;
    justify-content: center;
    gap: 2em;
}

.small .card {
    min-width: 9em;
}

.smaller {
    font-size: 0.9em;
    overflow: auto;
    align-items: flex-start;
}

.smallest {
    font-size: 0.6em;
    justify-content: center;
}


.col {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.col,
.row {
    display: flex;


    gap: 0.5em;
}



.name {
    color: white;
    text-align: center;
    text-wrap: pretty;
}

hr {
    width: 100%;
    margin: 0.2em 0 0;
    border: none;
    height: 0.04em;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.class {
    font-size: 0.5em;
    opacity: 0.5;
    text-align: center;
}

.title {
    color: white;
    font-size: 0.8em;
    opacity: 0.5;
    text-wrap: pretty;
}

.coor-zone {
    background-color: #132a30;
    padding: 0.5em;
    border-radius: 15px;
}

.coor-zone>.card {
    min-width: 9em;
}

.div-zone {
    background-color: #4c7178;
    padding: 0.5em;
    border-radius: 12px;
    display: none;
}

.div-name {
    font-weight: 600;
    font-size: 0.8em;
    text-align: center;
}

#logo {
    position: relative;
    height: 2em;
    opacity: 0.3;
    margin: 0 0 0.5em;
}

.mem {
    font-size: 0.8em;
    display: none;
}

.hidden {
    display: none;
}

.visible {
    display: flex;
}

#title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 2em;
}

h1,
h2 {
    margin: 0;
    font-weight: lighter;
}

h1 {
    font-size: 1.3em;
}

h2 {
    font-size: 1em;
    opacity: 0.5;
}

/* Taruh ini di dalam file CSS Anda */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 0.8rem;
    }
}

.card:hover {
    filter: invert(1);
    border: 1px solid transparent;
}