body {
  font-family: 'Baloo Da 2',
  cursive;
  padding-top: 5rem;
  background-color: rgba(205, 241, 241, 0.76);
}
.carousel{
  margin-top: -2%;
}
a .btn{
  background: #17a2b8;
}

a .btn:hover{
  background: #bd7d52;
  border-color: #bd7d52;
}
p .btn:hover{
  background: #ff6600;
  border-color: #bd7d52;
}
.search-bar{
  position: absolute;
  top: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  background-clip: padding-box;
  
}
.alert{
  position: absolute;
  z-index: 1000;
}
th {
  color: red;
  text-align: center;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
}

td {
  color: black;
  text-align: center;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;

}
table {
  border-collapse: collapse;
  border: 2px solid rgb(200, 200, 200);
  letter-spacing: 1px;
  font-family: sans-serif;
  font-size: .8rem;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

code {
  font-size: 80%;
}

.box{
  width:100%;
  height: auto;
  position:relative;
  border:1px solid #BBB;
  background:#eee;
}

.ribbon {
  position: absolute;
  right: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: center;
}
.ribbon span {
  font-size: 9px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold; line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); /* Needed for Safari */
  width: 100px; display: block;
  background: #79A70A;
  background: linear-gradient(#9BC90D 0%, #79A70A 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; right: -21px;
}
.ribbon span::before {
  content: '';
  position: absolute;
  left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #79A70A;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79A70A;
}
.ribbon span::after {
  content: '';
  position: absolute;
  right: 0%; top: 100%;
  z-index: -1;
  border-right: 3px solid #79A70A;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79A70A;
}

.red span {background: linear-gradient(#F70505 0%, #8F0808 100%);}
.red span::before {border-left-color: #8F0808; border-top-color: #8F0808;}
.red span::after {border-right-color: #8F0808; border-top-color: #8F0808;}

.blue span {background: linear-gradient(#2989d8 0%, #1e5799 100%);}
.blue span::before {border-left-color: #1e5799; border-top-color: #1e5799;}
.blue span::after {border-right-color: #1e5799; border-top-color: #1e5799;}

#footer-text{
  position: absolute;
  z-index: 2;
  bottom: 8px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.text-copy{
  color: white;
  font-size: 23px;
}
.text_home{
display: block;
}
.carousel-item img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.carousel-item p{
  color: white;
  position: absolute;  
  width: 80vw;
  text-align: center;
  font-size: 90px;
  left: 50%;                        /* horizontal alignment */
  top: 50%;                         /* vertical alignment */
  transform: translate(-50%, -50%);
}

.float{
  z-index: 2;
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#343a40;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
}

.my-float{
	margin-top:22px;
}
/* The Close Button */
.close_button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close_button:hover,
.close_button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#modal_view{
  padding-left: 3%;
  padding-right: 3%;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal_view_content {
  display: grid;
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 20px;
  width: 50%; /* Could be more or less, depending on screen size */
}


@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
      width: 100%;
  }

.carousel-item img{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.text_home{
  display: block;
  }

.carousel-item p{
  color: white;
  position: absolute;  
  width: 300px;
  text-align: center;
  font-size: 30px;
  left: 50%;                        /* horizontal alignment */
  top: 50%;                         /* vertical alignment */
  transform: translate(-50%, -50%);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal_view_content {
  display: grid;
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 20px;
  width: 80%; /* Could be more or less, depending on screen size */
  height: 80vh;
}


}