
/*************************************/
/* Main Background Format */
/*************************************/

body {
   margin: 0;
}
  
.header{
    width: 100%;
    position: fixed;
    z-index: 100;
    background: var(--header-bg-color);
    top: 0px;
    right: 0px;
}
@media only screen and (max-width : 768px){
    .header{
        position: relative;
    }
}
.main{
    margin-top: 90px;
    background: #303030;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.0);
    min-height: 82vh;
}
@media only screen and (max-width : 768px){
    .main{
        margin-top: 70px;
    }
}
.footer{
    background: var(--footer-bg-color);
    height: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
}

/*************************************/


