* {
    font-family: "Urbanist", serif;
}

.wrapper {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../img/star-wars.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.social-holder {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 16px;
    border-radius: 10px;
}

img.img-fluid.dex {
    height: 40px;
}

.animated-circles {
    position: absolute;
    bottom: auto;
    left: auto;
    right: 0;
    transform: translate3d(65%, -50%, 0);
    top: 0;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    border-radius: 100%;
    border: 3px solid #FFF;
    transform: translate3d(-50%, -50%, 0);
}

.circle-1 {
    animation: growCircle 2s linear infinite;
}

.circle-2 {
    animation: growCircle 2s infinite;
    animation-delay: .5s;
}

.circle-3 {
    animation: growCircle 2s infinite;
    animation-delay: 1s;
}

.circle-4 {
    animation: growCircle 2s infinite;
    animation-delay: 1.5s;
}

@keyframes growCircle {
    0% {
        width: 0px;
        height: 0px;
        opacity: 1;
    }

    /* 50% {
        width: 100px;
        height: 100px;
        opacity: 0.5;
    } */

    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .social-holder span {
        display: none;
    }
}