.icons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    overflow: clip;
    padding: 3rem;
}

.icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    opacity: .1;
    font-size: 2rem;
    margin: 3rem;
}

/* Animation for glowing effect */
@keyframes glow {
    0% {
        opacity: 0.4;
        transform: scale(.75);
    }

    50% {
        opacity: 0.4;
        text-shadow: none;
        transform: scale(1.25);
    }

    100% {
        opacity: 0.4;
        transform: scale(.75);
        text-shadow: 0 0 10px var(--light, rgb(255, 255, 255));
    }
}
