* {
    box-sizing: border-box;
}
body {
    font-family: 'Arimo', sans-serif;
    margin: 0;
}

.container {
    display: block;
}

#top{
    display: flex;
    flex-direction: row;
    width: 100%;
    position: sticky;
    top: 0;
    background-color: white;
}
#introduction{
    padding-top: 15px;
    width: 44vw;
    page-break-inside: avoid;
    line-break:loose;
    /* display: block; */
}
h1{
    display:inline;
    color: black;
    text-decoration: none;
    font-weight: normal;
    text-align: left;
    font-size: 1.07em;
    line-height: 130%;
    margin-bottom: 0;
    page-break-inside: avoid;
    line-break: loose;
}
h2{
    display:inline;
    margin-top: 0;
    color: black;
    text-decoration: none;
    font-weight: normal;
    text-align: left;
    font-size: 1.07em;
    line-height: 130%;
    page-break-inside: avoid;
    line-break: loose;
}

mark {
    background-color: #0000ff;
    padding: 0 2px; 
    color: white;
}
.header {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px;
    background-color: white;
}

.menu-icon {
    font-size: 4em;
    color: white;
    padding: 0px 15px;
    cursor: pointer;
    text-shadow: 1px 1px 5px #000000;
}

.menu-icon-2 {
    font-size: 4em;
    color: white;
    padding: 0px 10px;
    padding-bottom: 0;
    cursor: help;
    text-shadow: 1px 1px 5px #000000;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
}
.menu-icon-2 img {
max-width: 90px;
}

.menu {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 0px 0px 0px 15px;
    cursor: pointer;

}

.menu a {
    color: black;
    text-decoration: none;
    text-align: left;
    font-family: "Roboto Slab", serif;
    font-weight: 550;
    font-size: .95em;
    font-kerning:normal;
    padding: 3px 0px;
}

.menu a:hover {
    color: #0000ff;
}

.content {
    margin-left: 120px;
    padding: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#image-container {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 46vh;
    width: 100%;
    position: relative;
}

.rotating-image {
    position: absolute;
    max-width: 60vw;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

.rotating-image.active {
    opacity: 1;
}

#table-container {
    width: 100%;
    margin-top: 10px;
    align-content: flex-start;
}

table {
    width: 99%;
    border-collapse: collapse;
    overflow: scroll;
    cursor: s-resize;
}

thead {
    z-index:3;
    left:0;
    top: 46vh;
    position: sticky;
    background-color: white;
    
}

th, td {
    border-bottom: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    color: #0000ff;
    font-weight: bold;
    font-size: 1em;
}


a {
    text-decoration: none;
}

tr a {
    color: black;
    text-decoration: none;
}

tr:hover a {
    color: #0000ff; 
}

a:hover {
    text-decoration: none;
}


tr:hover {
    color: #0000ff;
}

#hover-image-container {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    pointer-events: none;
    max-width: 80vw;
    max-height: 70vh;
}

#hover-image {
    width: 100%;
    object-fit: contain;
}

.footer {
    color: black;
    text-decoration: none;
    font-size: .8em;
    justify-content: center;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer p {
    text-align: center;
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    
}
.footer img {
    position: relative;
    justify-content: center;
    display:inline;
    padding-bottom: 10px;
    width: 75px;
    opacity: 100%;
}
@media (min-width: 1681px) {
    .container {
        max-width: 100%; 
    }

    .header, .content, .footer {
        max-width: 100%;
    }

    #table-container {
        width: 99.5%; 
        margin: 0 auto;
    }

    /* #image-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: right;
    } */
    #image-container {
        display: flex;
        justify-content: end;
        align-items:end;
        height: 46vh;
        width: 100%;
        position: relative;
    }
    #image-container img {
        object-fit: contain;
        height: 100%;
        width: 100%;
        right: 0;
        /* position: relative; */
    }

    .rotating-image {
        position: absolute;
        max-width: 60vw;
        max-height: 100%;
        object-position: right;
        object-fit: contain;
        opacity: 0;
        transition: opacity .5s ease-in-out;
    }
    .rotating-image img{
        object-fit:cover;
    }
}

@media screen and (max-width: 1100px) {
    .container {
        display: block;
        width: 100%;
    }
    .header {
        display: flex;
        flex-direction: row;
        height: 80px; 
        position: fixed;
        top: 0;
        left: 0; 
        width: 100vw;
        padding: 20px 0px 10px 0px;
        z-index: 10;
        background-color: white;
        justify-content: space-between;
        overflow-y: hidden;
        overflow-x: hidden;
        align-items: center;
    }
    .menu {
        display: flex;
        flex-direction: row;
        padding: 18px 6px 18px 6px;
        cursor: pointer;
        z-index: 10;
    
      }
    .menu a {
        color: black;
        text-decoration: none;
        text-align: left;
        font-family: "Roboto Slab", serif;
        font-weight: 550;
        font-size: .95em;
        font-kerning:normal;
        padding: 3px 0px;
        padding: 14px 7px 14px 7px;
      }
      
    .menu a:hover {
        color: #0000ff;
    }
    .menu-icon-2 {
        font-size: 4em;
        color: white;
        padding: 10px;
        padding-top: 0px;
        padding-bottom: 0;
        cursor: help;
        text-shadow: 1px 1px 5px #000000;
        position: relative;
        top: 0;
        right: 0;
        z-index: 12;
        background-color: white;
        margin-left: auto;
    }
    .menu-icon-2 img {
        max-width: 90px;
        height: auto;
    }
    .content {
        margin: 0px;
        padding: 0;
        background-color: white;
        width: 99vw;
        display: block;
        flex-direction: column;
        align-items: center;
        
    }
    #top {
        padding-top: 70px;
        top:0;
        display: flex;
        position:relative;
        flex-direction: column;
        width: 100vw;
        background-color: white;
        justify-content: flex-start;
    }

    #introduction {
        width: 97vw;
        color: black;
        text-decoration: none;
        text-align: left;
        font-size: 1em;
        padding: 20px 0px 10px 10px;
        position: relative;
        overflow: scroll;
    }
    #image-container {
        display: none;
        max-height: 46vh;
        padding-top: 0px;
        top: 80px;
        position: sticky;
        display: flex;
        justify-content: center;
        padding: 0px 10px 0px 10px;
        width: 100%;
        z-index: 9; 
    }


    .rotating-image {
        position: absolute;
        max-width: 100%;
        max-height: 100%;
        object-fit: scale-down;
        opacity: 0;
        transition: opacity .5s ease-in-out;
    }
    thead {
        z-index:3;
        left:0;
        top: 80px;
        position: sticky;
        background-color: white;
    }
    
    .rotating-image.active {
        opacity: 1;
    }
    
    #table-container {
        width: 100%;
        margin: 10px;
        align-content: flex-start;
    }
    
    table {
        width: 98.5%;
        border-collapse: collapse;
        overflow: scroll;
    }

}
@media screen and (max-width: 470px) {
    .header {
        display: flex;
        flex-direction: row;
        height: 70px; 
        position: fixed;
        top: 0;
        left: 0; 
        width: 100vw;
        padding: 0px 0px 0px 5px;
        z-index: 10;
        background-color: white;
        overflow-y:hidden;
    }
    .menu {
        display: flex;
        flex-direction: row;
        padding: 18px 0px 18px 6px;
        cursor: pointer;
        z-index: 10;
    
      }
    .menu a {
        display: flex;
        color: black;
        text-decoration: none;
        text-align: left;
        font-weight: 550;
        font-size:.8em;
        padding: 9px 3px 9px 3px;
    }
    .menu-icon {
        font-size: 3.5em;
        color: white;
        padding: 0px 2px 0px 2px;
        cursor: pointer;
        text-shadow: 1px 1px 5px #000000;
    }
      
    .menu a:hover {
        color: #0000ff;
    }  
    .menu-icon-2 img {
        width: 1.15em;
    }
    #top {
        padding-top: 60px;
        top:0;
        display: flex;
        position: relative;
        flex-direction: column;
        width: 100vw;
        background-color: white;
        justify-content: flex-start;
    }
    #introduction {
        width: 95vw;
        color: black;
        text-decoration: none;
        text-align: left;
        font-size: .9em;
        padding: 10px 0px 10px 10px;
        position: relative;
        overflow: hidden;
    }
    thead {
        z-index:3;
        left: 0;
        top: 60px;
        position: sticky;
        background-color: white;   
    }
    table{
        font-size: .8em;
    }
    #table-container {
        width: 97%;
        margin: 10px;
        align-content: flex-start;
    }
    #image-container {
        display: none;
        max-height: 35vh;
        padding-top: 0px;
        top: 0;
        display: flex;
        justify-content: center;
        padding: 0px 10px 0px 10px;
        width: 100%;
        z-index: 9; 
    }
    .footer {
        color: black;
        text-decoration: none;
        font-size: .7em;
        justify-content: center;
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footer img {
        position: relative;
        justify-content: center;
        display:inline;
        padding-bottom: 10px;
        width: 60px;
        opacity: 100%;
    }
}
@media screen and (max-width: 360px) {
    .header {
        display: flex;
        flex-direction: row;
        height: 60px;
        position: fixed;
        top: 0; 
        left: 0; 
        width: 100vw;
        padding: 0px 0px 0px 5px;
        z-index: 10;
        background-color: white;
        overflow-y:hidden;
      }
    .menu {
        display: flex;
        flex-direction: row;
        padding: 18px 6px 10px 6px;
        cursor: pointer;
        z-index: 10;
    
      }
    .menu a {
        display: flex;
        color: black;
        text-decoration: none;
        text-align: left;
        font-weight: 550;
        font-size:.7em;
        padding: 1px 2px 9px 3px;
    }
    .menu-icon {
        font-size: 2.5em;
        color: white;
        padding: 0px 3px 0px 0px;
        cursor: pointer;
        text-shadow: 1px 1px 3px #000000;
    }
      
    .menu a:hover {
        color: #0000ff;
    }  
    .menu-icon-2 {
        font-size: 4em;
        color: white;
        padding: 0px 10px 0px 0px;
        padding-bottom: 0;
        cursor: help;
        text-shadow: 1px 1px 5px #000000;
        position:sticky;
        top: 0;
        right: 0;
        z-index: 12;
        background-color: white;
       
    }
    .menu-icon-2 img {
        width:.9em;
        display: block;
    }
    #top {
        padding-top: 50px;
        top:0;
        display: flex;
        position: relative;
        flex-direction: column;
        width: 100vw;
        background-color: white;
        justify-content: flex-start;
    }
    #introduction {
        width: 95vw;
        color: black;
        text-decoration: none;
        text-align: left;
        font-size: .8em;
        padding: 10px 0px 0px 10px;
        position: relative;
        overflow: hidden;
    }
    thead {
        z-index:3;
        left: 0;
        top: 50px;
        position: sticky;
        background-color: white;   
    }
    table{
        font-size: .8em;
    }
    #table-container {
        width: 97%;
        margin: 10px;
        align-content: flex-start;
    }
    #image-container {
        display: none;
        max-height: 35vh;
        padding-top: 0px;
        position: relative;
        top: 0;
        display: flex;
        justify-content: center;
        padding: 0px 10px 0px 10px;
        width: 100%;
        z-index: 9; 
    }
    .footer {
        color: black;
        text-decoration: none;
        font-size: .7em;
        justify-content: center;
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .footer img {
        position: relative;
        justify-content: center;
        display:inline;
        padding-bottom: 10px;
        width: 60px;
        opacity: 100%;
    }
}