@import url('https://fonts.googleapis.com/css?family=Michroma&display=swap');

body {
    font-family:Michroma, serif ;
    background: linear-gradient(90deg, #010555 0%, #0e0d0d 100%);

}
p{
    color: aquamarine;
}
.nav-link {
    color: aquamarine;
}

.navbar-nav .nav-link.active {
    color: rgb(140, 145, 143);
}

.navbar-brand>img {
    width: 40px;
}

.navbar-toggler {
    background-color: rgb(140, 145, 143);
}

.sidebar {
    color: aquamarine;
    background: linear-gradient(270deg, #010555 0%, #0e0d0d 100%);

}
.card{
    background: linear-gradient(270deg, #010555 0%, #0e0d0d 100%);
    color: aquamarine;
}
.slide-text,
.btn-outline-primary,
.footer-text{
    color: aquamarine;
    margin:auto auto;

}
footer{
    background: linear-gradient(270deg, #010555 0%, #0e0d0d 100%);
}
.media-links{
    display: flex;
    justify-content: center;
    align-items: center;
}
.call-anima{

    animation: myAnim 2s ease 0s infinite normal forwards;
}

@keyframes myAnim {
	0% {
		animation-timing-function: ease-out;
		transform: scale(1);
		transform-origin: center center;
	}

	10% {
		animation-timing-function: ease-in;
		transform: scale(0.91);
	}

	17% {
		animation-timing-function: ease-out;
		transform: scale(0.98);
	}

	33% {
		animation-timing-function: ease-in;
		transform: scale(0.87);
	}

	45% {
		animation-timing-function: ease-out;
		transform: scale(1);
	}
}
@media (max-width: 755px){
    .carousel-indicators{
        display: none;
    }
}