body {
  margin: 0;
}

/*Navbar Styling*/
#title {
  background-color: #2f4858;
}

.navbar {
  padding: 10px;
}

.navbar-brand {
  font-family: "Ubuntu";
  font-size: 1.8rem;
  font-weight: 400;
  padding-left: 1.5rem;
}

.nav-item {
  padding: 0 18px;
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 400;
}

.media-wrapper {
  text-align: center;
}

.icons {
  color: #FFBD69;
  padding-right: 1rem;
}

/*Hero Image Styling*/
.hero {
  padding-top: 90px;
  text-align: center;
  background-image: url("../images/complete.png");
  background-color: #ffe5d9;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  animation: colorchange 5s linear infinite 0s;
  animation-timing-function: ease-in-out;
}

.containerbox {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, .15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
  padding: 2%;
}

.BigHeading {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 300%;
  font-weight: bold;
}

@keyframes colorchange {
  0% {
    background-color: #ffe5d9;
  }

  50% {
    background-color: #e5989b;
  }

  100% {
    background-color: #f3c4fb;
  }
}

/* Table Styling*/
#section2 {
  padding: 7% 5%;
}

.headingBox {
  text-align: center;
  padding: 1.5rem;
  background-color: #FFBD69;
}

.heading {
  font-family: "Montserrat-black";
  font-weight: bolder;
  font-size: 3.5rem;
}

.table {
  font-family: "Ubuntu";
  font-weight: 400;
}

tr:hover {
  opacity: 0.8;
}

/*table links*/
.oppolink {
  text-decoration: none;
  color: #ffffff;
}

.oppolink:hover {
  text-decoration: underline;
  color: #03045e;
}

/*footer*/
#footer {
  background-color: #2f4858;
  padding: 6% 10% 5% 10%;
}

.logoname {
  text-decoration: none;
  color: #ffffff;
}

.footerlogo {
  text-align: center;
  font-family: "Ubuntu";
  font-size: 2.5rem;
  font-weight: 400;
  padding-bottom: 4%;
}

.foo {
  padding: 3% 2% 2% 2%;
  text-align: center;
}

.footer__navigation {
  text-align: center;
}

.footer__list {
  list-style: none;
}

.footer__item {
  display: inline-block;
}

.footer__item {
  margin-right: 1.5rem;
}

.footer__link:link,
.footer_link:visited {
  color: white;
  color: #777;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}

.footer__link:hover,
.footer__link:active {
  color: #F4A460;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(5deg) scale(1.3);
}

.footer__item a {
  color: white;
  font-size: 1.2rem;
}

.footer__copyright {
  color: white;
}

/*Media query*/
@media screen and (max-width:768px) {
  .container {
    padding: 3%;
  }

  .BigHeading {
    font-size: 200%;
  }

  .heading {
    font-size: 2.5rem;
  }

  #section2 {
    padding: 7% 0 7% 0;
  }

  .footer__item {
    display: block;
  }

}
