body {
    background-image: url(../images/ht-bg.gif);
    background-repeat: repeat;
    background-attachment: fixed;
}
/** Full Main Wrapper **/
.wrapper {
    width: 100%;
}
/** Top Menu Wrapper **/
.m-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: white;
    border-style: solid;
    border-color:#ff9a03;
    border-width: 5px;
    border-radius: 20px;
    min-width: 250px;
    max-width: 350px;
}
/** Main Content Wrapper **/
.c-wrapper {
    width: 80%;
    max-width: 1000px;
    background-color:white;
    border-style: double;
    border-width: 9px;
    border-color: #ff9a03;
    border-radius: 45px;
    padding: 20px 20px 40px 20px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
}
/** Top Menu Buttons **/
.button {
    border: 2px solid #0707aa;
    background-color: #eeeeee;
    font-size: .9rem;
    color: #0707aa;
    text-decoration: none;
    transition: 300ms ease-in-out;
    padding: 2px 15px 2px 15px;
}
.btn {
    border-color: #0707aa;
    color: #0707aa;
}
.btn:hover {
    background-color: rgb(236, 233, 22);
    border-color: #ff0000;
    border-radius: 20px;
    border-width: 3px;
    color: #000;
    font-weight: bold;
}
.btn:active {
    background-color: #ff0000;
    border-color: #000000;
    color: #ffffff;
    font-weight: bold;
    transition: none;
}
.cent {
    text-align: center;
}
.marg-sm {
    margin: 2px 0 2px 0;
}
/** HR Styles **/
.h-100red {
    width: 100%;
    border: none;
    background-color: #ff0000;
    height: 2px;
    margin: 15px auto 15px auto;
}
/** Font Style Size **/
.fs1 {
    font-size: 2em;
    font-weight: 600;
}
.fs2 {
    font-size: 1.5em;
    font-weight: 600;
}
.fs3 {
    font-size: 1.17em;
    font-weight: 600;
    line-height: 1.2;
}
.fs4 {
    font-size: 1em;
    font-weight: 600;
}
.fs5 {
    font-size: .83em;
    font-weight: 600;
}
.fs6 {
    font-size: .67em;
    font-weight: 600;
}
/** Flex Container **/
.flexcontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
/** Fixed Size Menu Buttons **/
.button-lnk2 {
    border: 3px solid;
    background-color: #ffffff;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    transition: 500ms;
}
.btn-lnk2 {
    border-color: #0000ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 175px;
    text-align: center;
    margin: 2px 2px 2px 2px;
    vertical-align: middle;
    color: #000000;
}
.btn-lnk2:hover {
    background-color: #ece916;
    border-color: #ff0000;
    border-radius: 0px;
    border-width: 3px;
    color: #000;
    font-weight: bold;
}
.btn-lnk2:active {
    background-color: #ff0000;
    border-color: #000000;
    border-radius: 0px;
    color: #ffffff;
    font-weight: bold;
    transition: none;
}
/** Responsive Web Design **/
@media screen and (max-width: 600px) {
    body {
    background: none;
    background-color: #ff9a03;
    }
    .c-wrapper {
    width: 85%;
    padding: 10px;
    margin-bottom: 100px;
    }
}