body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-size: 14px;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    margin: 5px;
}

#header, #footer {
    width: 100%;
    height: 44px;
    flex-shrink: 0;
    justify-content: center;
    z-index: 100;
}

#header {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

#header-container {
    padding: 0px 15px;
    box-sizing: border-box;
    height: 100%;
    align-items: flex-end;
}

#footer {
    border-top-width: 1px;
    border-top-style: solid;
}

#container {
    height: auto;
    flex-grow: 1;
    flex-shrink: 0;
    padding: 15px;
    box-sizing: border-box;
    max-width: 100%;
}

#nav-bar {
    height: 35px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    bottom: -1px;
}

.tab-button {
    border: none;
    padding: 6px 12px;
    border-radius: 4px 4px 0 0;
    border-bottom: none;
    position: relative;
    cursor: pointer;
    background-color: transparent;
}

.tab-button {margin-left: 5px;}

.tab-button:first-of-type {margin: 0;}

.tab-button.active {
    border-width: 1px;
    border-style: solid;
    border-bottom: none;
}

a {
    text-decoration: none;
    color: white;
    position: relative;
    bottom: -7px;
    height: fit-content;
}

hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #101010;
    border-top: 1px solid #404040;
}

zero-md {
    color: white;
}

iframe { 
    aspect-ratio: 16/4;
}
/* Container size */

.container-size {
    width: 720px;
    height: 100%;
}

.pop-wrapper {
    display: grid;
    grid-template-columns: 85% 15%;
}

.pop-box-arrow {
    text-align: center;
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 2;
    grid-column-end: 2;
}

.pop-title {
    text-align: left;
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 1;
}