body{
    background-image: url(../bg/files-2_bg.jpg);
    background-repeat: repeat;
    background-attachment: fixed;
}
.wrapper{
    width: 100%;
}
.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:#6ef579;
    border-width: 5px;
    border-radius: 20px;
    min-width: 250px;
    max-width: 350px;
}
.button{
    border: 2px solid #25259e;
    background-color: white;
    font-size: .9rem;
    color: black;
    text-decoration: none;
    transition: 500ms;
    padding: 2px 15px 2px 15px;
}
.btn{
    border-color: #25259e;
    color: #000;
}
.btn:hover, btn:focus{
    background-color: rgb(236, 233, 22);
    border-radius: 20px;
    border-color: #f56eee;
    color: #000;
    font-weight: bold;
}
/* Main Style */
.c-wrapper{
    width: 80%;
    max-width: 1050px;
    background-color:white;
    border-style: double;
    border-width: 9px;
    border-color: #6ef579;
    border-radius: 75px;
    padding: 20px;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 300px;
}
.center{
    text-align: center;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-items: center;
    justify-content: space-around;
}
.flex-container > div{
    width: 350px;
}
.img-siz-1{
    width: 100%;
}
.img-pg{
    display: block;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.img-vert{
    vertical-align: text-bottom;
}
@media screen and (max-width: 600px){
    body {
        background: none;
        background-color: gray;
    }
    .c-wrapper{
        width: 85%;
        padding: 10px;
    }
}     