body, html {
    height: 100%;
}
.bg-img{
    background-image: url(../images/gradient2.png);
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animate {
    -webkit-transition: font-size 0.5s;
    -moz-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    -ms-transition: font-size 0.5s;
    transition: font-size 0.5s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}
.zoomIn{
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
}
#demo .carousel-inner .carousel-item>img {
    object-fit: cover;
    width: 70%;
    -webkit-animation: zoom 20s;
    animation: zoom 20s;
}
.carousel-item{
    position: relative;
}
.mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

.rgba-purple-slight, .rgba-purple-slight:after {
    background-color: rgba(49, 0, 165, 0.2);
}

.btn {
    margin: .375rem;
    color: inherit;
    text-transform: uppercase;
    word-wrap: break-word;
    white-space: normal;
    cursor: pointer;
    border: 0;
    border-radius: .125rem;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    padding: .84rem 2.14rem;
    font-size: .81rem;
}

.btn-rounded {
    border-radius: 10em;
}
.banner-text{
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.41);
}
.main-logo {
    z-index: 9;
    left: 3.8%;
    top: 5%;
    width: 180px;
}

.carousel-control-next, .carousel-control-prev {
    width: 10%;
}
.footer{
    background: rgba(0, 0, 0, 0.527);
    background: linear-gradient(-40deg, rgba(255, 110, 197, 0.712), rgba(119, 115, 245, 0.698)) !important;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #ffffff;
    z-index: 999;
}
@media (max-width: 767px) {
    .main-logo {
        width: 70px;
        left: 0;
        top: 0;
        margin: auto;
        position: relative !important;
    }
    .display-3{
        font-size: 2.3rem;
    }
    
}
@media (max-width: 576px){
    .footer{
        position: relative;
    }
}

canvas{
    width: 100vw;
    height: 100vh;
    position: absolute;
    bottom: 0;
}
.bg-secondary {
    background-color: #3F51B5!important;
}
