#main-content {
    position: relative;
    transition: all 0.5s ease;
    transform-origin: center bottom;
    box-shadow: 0px 22px 54px rgba(0, 0, 0, 0.5);
    padding-bottom: 100px;
    background: black;
}

body.tight #main-content {
    transform: translateY(-60px) scale(0.9);
}

.footer {
    position: relative;
    width: 90%;
    margin: 0 auto 50px auto;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    gap: 50px;
}

.social-media {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 22px;
    padding: 10px 20px;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.5s ease;
}

.container-disabled {
    pointer-events: none;
}

.social-media::before,
.social-media::after {
    position: absolute;
    transition: all 0.5s ease;
}

.social-media::before {
    content: "[";
    left: 0;
}

.social-media::after {
    content: "]";
    right: 0;
}

.social-media:hover::before {
    transform: translateX(-20px);
}

.social-media:hover::after {
    transform: translateX(20px);
}

@media (max-width: 800px) {
    .footer-container {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .footer-container {
        letter-spacing: 10px;
        flex-direction: column;
        gap: 0;
    }
    .social-media {
        padding: 10px 40px;
    }
}