body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(45deg, #39367d, #26205c, #241e5a);
    background-size: 400% 400%;
    animation: animate 3s infinite alternate;
    color: #fff;
}

.header {
    min-height: 100vh;
}

.navbar {
    background: transparent !important;
}

.navbar-brand {
    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
}

.navbar-brand:focus, 
.navbar-brand:hover {
    color: #39367d !important;
}

.nav-link {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.carousel-item {
    margin-top: 20%;
}

.carousel-item h1 {
    font-size: 7em;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
}

.carousel-item p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fafafa;
    font-family: "Montserrat", sans-serif;
    padding: 0 25%;
    line-height: 1.5;
}

.container-footer {
    background: transparent;
    color: #ffffff;
}

.container-footer a {
    color: #ffffff;
    text-decoration: none;
}

.container-footer a:hover {
    color: #cccccc;
}

@keyframes animate {
    0% {
        background-position: 0% 50%; 
    }
    100% {
        background-position: 100% 50%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-nav {
        background: #fff;
    }
    .nav-link {
        color: #39367d;
    }
    .carousel-item {
        margin-top: 50%;
    }
    .carousel-item p {
        padding: 0 10%;
    }
}

@media (max-width: 767px) {
    .navbar-nav {
        background: #39367d;
    }
    .nav-link {
        color: #ffffff;
    }
    .carousel-item {
        margin-top: 45%;
    }
    .carousel-item h1 {
        font-size: 40px;
    }
    .carousel-item p {
        font-size: 1em;
        padding: 0 2%;
    }
}
