


.main_footer{
    
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border-top: 0.8rem solid rgb(53, 88, 89); */
    /* margin-bottom: 4.8rem; */
    
}
.footer_title{
    margin: 2rem 0 2rem 0;
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-family: var(--ysa);
    line-height: 2rem;
    /* background-color:blueviolet; */


}
.footer_title>a{
    text-decoration: none;
    color: white;
    -webkit-tap-highlight-color: transparent;
    padding-left: 20%;
    /* background-color: aquamarine; */
}
/* .footer_title>a:active{
    text-decoration: none;
    background:none
} */

@media only screen and (min-width: 300px) {
    .footer_title>a{
        /* background-color:lightsalmon; */
    }
    .footer_title{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
  }


.footer_social_media{
    height: 40px;
    width: 100%;
    /* background-color: aquamarine; */
    display: flex;
    justify-content: center;
    
}



.footer_social_media>img{
    width: 40px;
    margin:0 10px 0 10px;

    
}
.footer_divider{
    height: 0.5px;
    width: 60%;
    background-color: white;
    margin-top: 1rem;
}

.copyright_mark{
    color: lightgray;
    font-family:var(--ysa);
    padding:0 1rem 0 1rem ;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 2rem;


}

@media only screen and (max-width:250px) {
    .main_footer{
        width: 200px;
    }
    .footer_social_media>img{
        
        margin:0 3px 0 3px;
    
        
    }
    
}