body {
    background-image: url(../images/corporate_america.jpg);
    background-attachment:fixed;
    background-repeat:repeat;
}
/* Containers for menu and main content */
.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:#0000FF;
    border-width: 5px;
    border-radius: 20px;
    min-width: 250px;
    max-width: 350px;
}
.button {
    border: 2px solid red;
    border-radius: 30px;
    background-color: white;
    font-size: .9rem;
    color: black;
    text-decoration: none;
    transition: 500ms;
    padding: 2px 10px 2px 10px;
}
.btn {
    border-color: red;
    color: #000;
}
.btn:hover {
    background-color: #00ff00;
    color: #ff0000;
    font-weight: bold;
}
.btn:active {
    background-color: #ff0000;
    border-color: #000000;
    color: #ffffff;
    font-weight: bold;
    transition: none;
}
.wrapper {
    width: 100%;
}
.c-wrapper {
    width: 80%;
    max-width: 1050px;
    background-color:white;
    border-style: solid;
    border-width: 5px;
    border-color: #0000FF;
    border-radius: 75px;
    padding: 20px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
}
/* styles for main content */
.cent {
    text-align:center;
}
 .tm {text-align:center;
      margin-top:5px;
}
 .attn {
       text-decoration-style:double;
       text-decoration-color:#FF0000;
}
/** P for h3 **/
.fs3 {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 600;
}
/** HR Styles **/
.hr-95pink {
    width: 100%;
    border: 0;
    background-color: #FF89FF;
}
.lh5 {
    height: 5px;
}
@media screen and (max-width: 600px){
    body {
        background: none;
        background-color: gray;
    }
    .c-wrapper{
        width: 85%;
    }
}     