@import url("https://fonts.googleapis.com/css2?family=Roboto&family=Source+Serif+Pro&display=swap");
body {
  font-family: Roboto;
  padding-bottom: 5rem;
}

#main h3 {
  font-size: 2.2rem;
  color: #5e0ab3;
  font-weight: 800;
  text-transform: uppercase;
  margin-block: 0 3rem;
  letter-spacing: 0.2rem;
  font-family: Source Serif Pro;
  text-align: center;
}
#main h4 {
  font-family: Source Serif Pro;
  font-weight: 500;
  margin-top: 2rem;
  text-align: center;
  background-color: #efdeff;
  color: #5e0ab3;
  text-transform: uppercase;
  padding: 4px 1rem 1px 1rem;
  font-size: 1.7rem;
}

nav {
  padding: 4px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #5e0ab3;
}

#navbar-nav {
  position: fixed !important;
  top: 0;
  z-index: 9;
  right: 0;
  width: 0;

  height: 100vh;
  padding-top: 4rem;
  background-color: #5e0ab3;
  box-shadow: -15px 0px 12px 0px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  transition: all 1s;
}

.show-nav {
  width: 300px !important;
}

#close-btn {
  position: absolute;
  top: 1rem;
  cursor: pointer;
  left: 1rem;
  font-size: 1.4rem;
  opacity: 0.9;
  color: #fff;
}

.nav-link {
  transition: all 0.2s;
  padding: 0.2rem 0.8rem !important;
  color: #fff !important;
  white-space: nowrap;
  margin-block: 0.3rem;
  margin-inline: 1rem;
  text-align: left;
  text-transform: uppercase;
  border-radius: 10px;
  font-size: 0.9rem;
}

.list-group-item {
  border: none;
}

.nav-link:hover,
.active {
  color: #2a3f83 !important;
  background-color: #fff;
}

.nav-link::before {
  content: "➤";
  margin-right: 1rem;
  opacity: 0;
  transition: all 0.25s;
}
.nav-link:hover::before {
  opacity: 1;
  margin-left: 1rem;
}

.front-page {
  background-image: url("../kongu-banner.webp");
  background-size: cover;
  background-position: bottom center;
  padding: 2rem 1rem;
  color: #fff;
}

#main {
  padding-block: 60px;
}
