@import url('https://fonts.googleapis.com/css?family=Michroma&display=swap');



body {
    font-family: Michroma, serif;
    background: radial-gradient(#2b00ff 0%, #090113 93%);

}

p {
    color: aliceblue;
}

.nav-link {
    color: rgb(206, 28, 43);
}

.navbar-nav .nav-link.active {
    color: blue;
}

.navbar-brand img {
    width: 40px;
}

.navbar-toggler {
    background-color: rgb(117, 108, 126);
}

.sidebar {
    color: aliceblue;
    
}

.card a {
    text-decoration: none;
    color: black;
}

.slide-text,
.footer-text  {
    color: white;
    margin: auto auto;

}

footer {
    background-color: rgb(13, 13, 14);
}

.media-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-anim {

    animation: myAnim1 4s ease 0s 1 normal forwards;
}

@keyframes myAnim1 {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 50%;
	}

	10% {
		transform: rotate(8deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-10deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(10deg);
	}

	80% {
		transform: rotate(-8deg);
	}

	90% {
		transform: rotate(8deg);
	}
}


@media (max-width: 755px) {
    .carousel-indicators {
        display: none ;
        } 
}

