body {
    background-color: black;
}

.container {
    color: rgb(216, 216, 216);
    background-color: black;
    width: 80%;
}

.carousel-inner {
    color: white;
    background-color: black;
    border: 30px;
}


/* Remove the navbar's default margin-bottom and rounded borders when using the navbar class */

.navbar {
    margin-bottom: 20px;
    border-radius: 0;
}

.navbar-inverse .navbar-nav>.active {
    color: #ffffff;
    background: #7da544;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    color: #ffffff;
    background: #7da544;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
    color: #ffffff;
    background: #97ca52;
}


/* Add a gray background color and some padding to the footer element */

footer {
    background-color:black;
    color: #aaaaaa;
    padding: 10px;
}

.carousel {
    background-color: black;
}

.item {
    background-color: black;
}


/*
img {
height: 100px;
width: 100px;
object-fit: contain;
}*/


/*
.carousel img {
min-width: 100%;
height: 500px;
max-width: none;
} */


/*
.carousel .item img {
max-height: 600px;
min-width: auto;
}
*/


/*
.carousel-control.left,
.carousel-control.right {
	background: orange !important;
	filter: progid: none !important;
	filter: none !important;
	background-image: none;
	outline: 0;
	opacity: 1;
} */

.carousel-control {
    background: rgba(0, 0, 0, 0) !important;
    color: white;
    opacity: 1;
}


/* .carousel-control span.icon-prev,
span.icon-next {
	color: red;
} */

.carousel-control:hover,
.carousel-control:focus {
    color: #7de973;
}


/*
.carousel-control.left,
.carousel-control.right {
	background: white !important;
	opacity: 1;
}
*/


/* .carousel-control {
	background: white !important;
} */

.carousel-indicators {
    bottom: -30px;
}

.carousel-inner {
    margin-bottom: 10px;
}

.carousel-inner img {
    width: 37%;
    margin: auto;
    max-height: 400px;
    /* min-height: 200px; */
    border-radius: 20px;
}

.img-pageicon {
    border-radius: 60px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
	width: 55%;
	height: auto;
	min-width: 300px;
    /* max-width: 700px; */
}

.img-pageicon-norounding {
	width: 55%;
	height: auto;
	min-width: 300px;
    /* max-width: 700px; */
}

.img-clickable {
    border-radius: 60px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 100%;
}

.clickable_title {
    font-size: 36px;
    font-weight: 500;
}

.clickable-description {
    padding-top: 60px;
}

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


/* When the the text is underneath the clickable then remove the padding */

@media (max-width: 768px) {
    .clickable-description {
        padding-top: 8px;
    }
}

.ul-bullet {
	list-style-type: disc !important;
	padding-left: 1em !important;
	margin-left: 1em;
}


/* .blinker.a.link {
	color: green;
	background-color: transparent;
	text-decoration: none;
}

.blinker.a.visited {
	color: pink;
	background-color: transparent;
	text-decoration: none;
}

.blinker.a.hover {
	color: red;
	background-color: transparent;
	text-decoration: underline;
}

.blinker.a.active {
	color: yellow;
	background-color: transparent;
	text-decoration: underline;
} */


/* Hide the carousel text when the screen is less than 600 pixels wide */

@media (max-width: 600px) {
    .carousel-caption {
        display: none;
    }
}