@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.footerContainer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer {
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 30px 20px 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon,
.menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    line-height: 0;
    flex-wrap: wrap;
    z-index: 99999;
}

.menu__item {
    list-style: none;
    display: flex;
    flex-direction: row;
    width: fit-content;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu__link {
    font-size: 1.2rem;
    color: #fff;
    line-height: normal;
    display: flex;
    align-items: center;
    height: fit-content;
    transition: 0.5s;
    text-decoration: none;
    font-weight: 300;
    position: relative;
}

.menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: hotpink;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
}

.menu__link:hover::after,
.menu__link:focus::after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);
}

/* Scale from center */
.menu__link::after {
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
}

.menu__link:hover::after,
.menu__link:focus::after {
    transform: scale(1);
}

.copyright {
    text-align: center;
    color: #fff;
    margin: 25px 0 0 0;
    font-size: 0.9rem;
    font-weight: 300;
}

.logo-twitch {
    padding-left: 5px;
    display: inline-block;
    width: 27px;
    height: 27px;
}

.logo-github {
    display: inline-block;
    padding-left: 5px;
    width: 27px;
    height: 27px;
}