* {
    /* border: 2px solid red; */
    font-family: sans-serif;
}

/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn {
    top: 50%;
}

.redirect-btn img {
    width: 70%;
    max-width: 599px;
}

.redirect-btn img {
    animation: pulse 0.65s infinite;
    animation-timing-function: linear;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.13);
    }

    100% {
        transform: scale(1);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }
}