.footer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
    margin-top: 30px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.footer > p {
    width: fit-content;
    margin: 0;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.footer a {
    color: rgba(0, 0, 0, 0.813);
    text-decoration: none;
}

.footer .social_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.footer .social_icon:hover {
    opacity: 0.7;
    text-decoration: none;
}

.footer .social_icon img {
    vertical-align: middle;
}

@media screen and (max-width: 750px) { 
    .footer > p  {
        font-size: 16px;
    }
}


a:hover {
    color: rgb(62, 62, 62);
    text-decoration: underline;
    cursor: pointer;
}

.social_icon {
    margin-top: 6px;
}