footer {
    background-color: rgb(53, 52, 52);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 0 10px 0;
    margin-top: 60px;
}

.footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
    width: 100%;
}
.footer-menu {
    width: 100%;

}
.footer-menu nav ul {
    display: flex;
    gap: 2%;
    font-weight: 600;
    color: white;
    justify-content: center;
}

.footer-menu nav ul li a {
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}
.copy {
    color: white;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}

.x-icon {
    width: 33px;
    height: auto;
}

@media screen and (max-width: 1000px) {
    .youtube-icon {
        width: 30px;
        height: auto;
    }
    .x-icon {
        width: 23px;
        height: auto;
    }

    .footer-menu nav ul {
        gap: 5%;
    }
    .copy {
        font-size: 12px;
    }
    .footer-sns {
        gap: 5%;
    }
}