
.footer {
    width: 100%;
    position: relative;
    height: 200px;
    background-color: rgb(86, 100, 233);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .support {
    /* background-color: brown; */

}
.footer .support a {
    display: inline-block;
    margin-top: 10px;
}
.footer .support a:link {
    color: white;
    text-decoration: none;
}
.footer .support a:visited {
    color: white;
    text-decoration: none;
}

.footer .support a:hover {
    color: rgb(105, 101, 101);
}

/* .footer .support a:active {
    color: white;
} */

.footer .socialMedia {
    color: white;
    margin-left: 2%;
    /* background-color: blueviolet; */
    display: flex;
    flex-direction: column;
    align-items: center;
   
}
.footer .socialMedia .logo {
    margin-top: 10px;
}
.footer .socialMedia .logo a:link{
    color: white;
    text-decoration: none;
}
.footer .socialMedia .logo a:visited {
    color: white;
}
.footer .socialMedia .logo a:hover {
    color: rgb(105, 101, 101);
}
.footer .socialMedia .email {
    margin-top: 10px;
}
.footer .socialMedia .email a:link{
    color: white;
    text-decoration: none;
}
.footer .socialMedia .email a:hover {
    color: rgb(105, 101, 101);
}
.footer .socialMedia .twitter {
    margin-top: 10px;;
    height: 20px;
    width: 20px;
}
.footer .copyright {
    position: absolute;
    color: white;
    font-size: .7em;
    text-align: right;
    right: 40px;
    bottom: 10px;


}



@media only screen and (max-width: 597px) {
    .footer .copyright {
        margin-left: auto;
        margin-right: auto;
        right: 0;
        left: 0;
        /* width: 100%; */
        text-align: center;
    }


    .footer {
        width: 100%;
        position: relative;
        height: 300px;
        background-color: rgb(86, 100, 233);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer .support  {
        text-align: center;
    }
}