@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@100;400&display=swap');

.footer{
    font-family: 'Roboto', sans-serif;
}

.homepage-link{
    padding: 10px;
    background-color: #dedede;
    color: #000;
    transition: .2s;
}

.homepage-link:hover{
    color: #000;
}

footer a{
    color: #000;
}

footer a:link{
    transition: 0.05s ease-in-out;
    /* color: #00A2E8; */
}

footer a:hover{
    /* transition: 0.2s ease-in; */
    transform: scale(1.1);
    /* box-shadow: 10px 10px 0 0 #212121; */
}

footer a:active{
    transition: 0.1s ease-out;
    color: #f7050d;
    text-decoration: none;
    font-size: 80%;
}

a:hover{
    /* transition: 0.2s ease-in; */
    /* color: #ffd64f; */
    /* font-size: 110%; */
}

footer .other-pages a{
    position: relative;
    flex-basis: 20%;
}

footer .other-pages img{
    width: 100%;
}

ffooter .other-pages a::after{
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -5px;
    background: #000;
    transform: scaleX(0);
    transition: 0.2s;
}

footer .other-pages a:hover::after{
    transform: scaleX(1);
}

.other-pages{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 25px;
    text-decoration: none;
}

.social{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.link-join, .link-feedback{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.social-media-icon{
    width: 75px;
}

.social-media-icon:hover{
    transition: 0.2s ease-out;
    margin-top: -15px;
}

.tcc{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: small;
    font-family: serif;
}

.white{
    background-color: #f5f2f0;
    width: 100%;
    height: 400px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.blue{
    background-color: #00A2E8;
    width: 100%;
    height: 75px;
    text-align: center;
}

.black{
    background-color: #303030;
    width: 100%;
    height: 75px;
    text-align: center;
}

.red{
    background-color: #f7050d;
    width: 100%;
    height: 75px;
    text-align: center;
}

.yellow{
    background-color: #ffd64f;
    width: 100%;
    height: 75px;
    text-align: center
}

.yellow2{
    background-color: #ffd64f;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}