﻿.footer {
	position: relative;
    height: 25vh;
    background-color: rgba(0, 215, 0, 1);
    width: 100%;
}
.footer .social {
    top: 19vh;
    margin-left: 1vw;
    position: absolute;
    color: white;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 30px;
}
.footer .copyright {
    top: 7.5vh;
    position: absolute;
    color: white;
    font-family: sunrise;
    font-size: 35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.footer .social a{
	color: white;
}
.footer .social a:link, .footer .social a:hover {
	text-decoration: none;
}
.footer .social a:visited {
	text-decoration: none;
	color: white;
}

@media only screen and (max-width: 768px) {
.footer {
	position: relative;
    height: 25vh;
    width: 100%;
}
.footer .social {
    top: 19vh;
    margin-left: 1vw;
    position: absolute;
    color: white;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 25px;
}
.footer .copyright {
    top: 7.5vh;
    position: absolute;
    color: white;
    font-family: sunrise;
    font-size: 30px;
	width: 100%;
	text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
}