/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
    width: 100%;
    height: auto;
}


/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn {
    top: 0.7%;
    left: 10%;
}

.redirect-btn img {
    width:30%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn1 {
    top: 22%;
}

.redirect-btn1 img {
    width:35%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn2 {
    top: 62%;
}

.redirect-btn2 img {
    width:35%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn3 {
    top: 94%;
}

.redirect-btn3 img {
    width:35%;
    animation: pulse 0.9s  infinite linear;
}

/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}



/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }
}