@import url(https://fonts.googleapis.com/css?family=Mynerve&display=swap);


body {
    font-family: Mynerve, serif;
    background: linear-gradient(0deg, #FBF700 0%, #0000A5 100%);
}

p {
    color: black;
}

.nav-link {
    color: red;
}

.navbar-nav .nav-link.active {
    color: aliceblue;
}

.navbar-brand img {
    width: 50px;
}

.navbar-toggler {
    background-color: aliceblue;
}

.sidebar {
    color: #000000;
}

.sidebar {
    background: linear-gradient(70deg, #FBF700 0%, #0000A5 100%);
}

.card {
    background: linear-gradient(70deg, #FBF700 0%, #0000A5 100%);
    color: black;
}

.card a {
text-decoration: none;
color: black;
}

.slide-text,
.footer-text {
    color: black;
    margin: auto auto;
}

footer {
    background: linear-gradient(70deg, #FBF700 0%, #0000A5 100%);
}

.media-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-anim {
    animation: myAnim 2s ease 0s infinite normal forwards;
}

@keyframes myAnim {
	0%,
	100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}

	15% {
		transform: translateX(-30px) rotate(-6deg);
	}

	30% {
		transform: translateX(15px) rotate(6deg);
	}

	45% {
		transform: translateX(-15px) rotate(-3.6deg);
	}

	60% {
		transform: translateX(9px) rotate(2.4deg);
	}

	75% {
		transform: translateX(-6px) rotate(-1.2deg);
	}
}

@media (max-width: 755px) {
    .carousel-indicators {
        display: none;
    }
}



