* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
body {
    background: rgb(0,0,64);
    background: linear-gradient(
        90deg,
        rgba(0,0,64,1) 0%,      /* very dark blue */
        rgba(0,0,128,1) 20%,    /* dark navy blue */
        rgba(0,64,192,1) 50%,   /* medium blue */
        rgba(0,128,255,1) 80%,  /* bright blue */
        rgba(173,216,230,1) 100% /* light blue */
    );

    font-family: 'Karla', sans-serif;
    font-size: 16px;
    color: #111;
    overflow-x: hidden;
}
 
.bgimg {
    position: fixed;
    bottom: 0;
    left: 150px;
    width: 1024px;
}
 
.sidewrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 4;
}
 
.sidewrapper2 {
    display: flex;
    flex-direction: row;
    height: 100%;
}
 
.side1 {
    background-color: #000;
    width: 150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 28px;
    font-family: 'PT Sans Narrow', sans-serif;
    padding: 1.5rem 0 1.5rem 0;
    overflow: scroll;
    overflow-x: hidden;
}
 
.side2 {
    background-color: #000;
    opacity: 0.7;
    width: 50px;
    height: 100%;
}
 
.headerwrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}
 
.headerborder {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 25px;
}
 
.header {
    margin-left: 200px;
    font-size: 56px;
    padding-top: 3rem;
    line-height: 38px;
    font-family: 'Arial', sans-serif;
    text-shadow: 3px 3px 0px #5DA9E9;
    color: #000;
}
 
.footerwrapper {
    width: 100%;
    background-color: #000;
    opacity: 0.7;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
}
 
.container {
    display: flex;
    flex-direction: column;
    padding: 3rem 3rem 5rem 3rem;
    gap: 1rem;
}
 
.box {
    background: rgba(255, 255, 255, 0.9);
    border: 5px ridge #3B82F6;
    margin-left: 200px;
    position: relative;
    z-index: 1;
}
 
.content {
    padding: 1rem;
}
 
.subheaders {
    background-color: #000;
    color: #fff;
    border-bottom: 3px ridge #C09657;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 16px;
}
 
.altimitlogo {
    position: fixed;
    right: 1rem;
    top: 42%;
    width: 480px;
}
 
a {
    color: #FF6B35;
    text-decoration: none;
}
 
.side1 a {
    color: #fff;
    text-decoration: none;
}
 
a:visited {
    color: #E85D04;
}
 
.side1 a:visited {
    color: #fff;
}
 
a:hover {
    font-weight: bold;
    text-shadow: none;
}
 
.side1 a:hover {
    font-weight: normal;
    text-shadow: 0 0 5px #fff;
    color: #97D9E9;
}
 
a:active {
    font-weight: normal;
}
 
::-webkit-scrollbar {
    width: 8px; 
}
 
::-webkit-scrollbar-track {
    background-color: #000;
}
 
::-webkit-scrollbar-thumb {
    background-color: #C09657;
}
 
.side1::-webkit-scrollbar {
    width: 3px; 
}
 
.side1::-webkit-scrollbar-track {
    background-color: #000;
}
 
.side1::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
}
 
#credit {
    color: #fff;
    font-size: 12px;
    position: fixed; 
    bottom: 0;
    right: 0;
    z-index: 3;
}
 
@media(max-width:750px) {
    body    {
        background: rgb(0,0,64);
    background: linear-gradient(
        90deg,
        rgba(0,0,64,1) 0%,      /* very dark blue */
        rgba(0,0,128,1) 20%,    /* dark navy blue */
        rgba(0,64,192,1) 50%,   /* medium blue */
        rgba(0,128,255,1) 80%,  /* bright blue */
        rgba(173,216,230,1) 100% /* light blue */
    );

    }
    .bgimg{
        position: fixed;
        bottom: 0;
        left: 0;
    }
    .img{
        width: 300px;
    }
    .headerwrapper{
        position: relative;
        z-index: 4;
    }
    .header{
        margin: 0;
    }
    .headerborder{
        display: none;
    }
    .sidewrapper{
        position: relative;
        z-index: 5;
        position: sticky;
        top: 0;
    }
    .sidewrapper2{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .side1{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        padding: 0.5rem;
        font-size: 18px;
    }
    .side1 img{
        width: 48px;
    }
    .side2{
        width: 100%;
        height: 25px;
    }
    .container{
        padding: 1rem 1rem 4rem 1rem;
    }
    .box{
        margin: 0;
    }}