:root {
    --dark-fushia-gradiant: linear-gradient(#70002d, #3d0015);
}

body {
    margin: 0;
    padding: 0;
    background: black;
    user-select: none;
    overflow: hidden;
}

#background_container {
    left: 50%;
    width: 100vw;
    max-width: 75rem;
    min-width: 58rem;
    position: absolute;
    margin-left: min(max(-50vw, -38.5rem), -29rem);
}

#background {
    width: 100%;
}

.social-links {
    display: flex;
    position: absolute;
    justify-content: center;
    width: 100vw;
    margin-top: max(15vw, 10rem);
}

.social-links img {
    height: max(4vw, 4rem);
    margin: 0 .4rem;
    min-height: 3rem;
    opacity: 90%;
    transform: scale(0.95);
    transition: all ease .2s;
}

.social-links img:hover {
    opacity: 100%;
    transform: none;
}
