body {
    font-family: "Roboto Condensed";
    margin: 0;
}

@font-face {
  font-family: 'OpenMoji';
  src: URL('OpenMoji-Color.SVG.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoColor';
  src: URL('NotoColorEmoji-Regular.ttf') format('truetype');
}

.emoji {
  font-family: 'NotoColor';
}


/* Default Block */

main {
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 20px;
    padding-left: 3%;
    padding-right: 3%;
}

    /* Navigation */
nav {
    background-color: #0078B8;
    color: white;
}

nav li {
    display: block;
}

nav ul {
    padding: 20px 0;
    margin: 0;    
}

nav ul li.burger-menu img {
    width: 20px;
    height: auto;
}

nav a {
    color: white;
    text-transform: uppercase;
    border-left-style: solid;
    border-color: black;
    border-width: thin;
}


@media only screen and (min-width: 1100px) {

    nav ul {
        display: flex;
    }


    nav a {
        padding: 20px;
    }
    
    li.burger-menu {
        display: none;
        visibility: hidden;
    }    
}

@media only screen and (max-width: 1100px) {
    nav a {
        padding: 10px;
    }    

    li.menu a {
        display: block;
        width: 100vw;
    }
}

@media only screen and (min-width: 2000px) {
    .links-section {
        width: 20%;
    }
    
    .iframe-table {
        width: 32vw;
    }
    
    .big-links li {
        width: 10vw;
    }
}
@media only screen and (max-width: 2000px) {
    .links-section {
        width: 30%;
    }
/*    
    body {
        background-color: #6666FF;
    }
*/    
    .iframe-table {
        width: 48vw;
    }
    
    .big-links li {
        width: 10vw;
    }
}
@media only screen and (max-width: 800px) {
    .links-section {
        width: 40%;
    }    
/*    body {
        background-color: #66FF66;
    }
*/    
    .iframe-table {
        width: 86vw;
    }
    .big-links li {
        width: 20vw;
    }
}
@media only screen and (max-width: 600px) {
    .links-section, {
        width: 80%;
    }
    
/*    body {
        background-color: #FF6666;
    }
*/    
    .iframe-table {
        width: 80vw;
    }
    .big-links li {
        width: 40vw;
    }
}

.border {
    border-radius: 20px;
    border: thin solid gray;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.links-section, .table-section, .big-links-section {
    overflow: auto;
}

.links-section {
    max-height: 300px;
}

.big-links-section {
    width: 90vw;
}

.links {
    overflow: scroll;
    overflow-x: hidden;
    max-height: 265px;
}

.links img {
    height: 15px;
    width: 15px;
    margin-right: 5px;
}

.big-links {
    overflow: scroll;
    overflow-x: hidden;
    margin-bottom: 5px;
}

.links-section p, .table-section p, .big-links-section p {
    background-color: #0078B8;
    text-transform: uppercase;
    color: white;
    margin: 0;
    padding: 8px 0px 8px 10px;
}

.links-section ul, .table-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-section li, .table-section li {
    border-top: thin solid gray;
}

.links-section a, .table-section a {
    padding: 4px 0px 4px 10px;
    display: block;
}

.big-links-section a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.big-links ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px 10px;
    list-style: none;
    padding: 3vh 0 0 0;
    margin: 0;
}

.big-links li {
    padding: 0;
}

.big-links img {
    display: block;
    width: 100%;
    height: auto;
}

.big-links span {
    display: block;
    margin: auto;
}

.iframe-table {
    height: 400px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

.footer {
    margin-bottom: 10px;
    width: 85%;
}


/* Hides Scrollbar */

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}