body {
    background-image: url(../images/covid-19-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:#FF9FFE;
    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: #FF9FFE;
    border-radius: 55px;
    padding: 20px 20px 40px 20px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 400px;
}
/** Top Menu Buttons **/
.button {
    border: 2px solid;
    background-color: #eeeeee;
    font-size: .9rem;
    color: #0707aa;
    text-decoration: none;
    transition: 300ms ease-in-out;
    padding: 2px 5px 2px 5px;
}
.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;
}
/** 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;
}
.marg-sm {
    margin: 2px 0 2px 0;
}
/** HR Styles **/
.h-100prp {
    width: 100%;
    border: none;
    background-color: #c019cf;
    height: 3px;
    margin: 15px auto 15px auto;
}