@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro";
  color: rgba(0, 0, 0, 0.8);
}

.navbar {
  background-color: #222;
  border-radius: 15px;
}
.navbar-nav {
  display: flex;
  flex-direction: column !important;
}
.nav-link {
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  color: #fff !important;
  transition: all 0.2s;
  font-size: 0.9rem;
  display: block;
  text-align: left;
}
.nav-link:hover {
  color: rgb(255, 255, 53) !important;
}

section {
  margin-inline: auto;
  max-width: 988px;
  padding: 1rem;
}
section a {
  color: #f34236;
  transition: all 0.2s;
}
section a:hover {
  color: blue;
}
section h3 {
  font-weight: bolder;
  font-size: 2.5rem;
  border-left: 2rem solid;
  padding-left: 1rem;
  margin-block: 2rem;
  color: #a61f3f;
}
section .block-lg {
  margin-block: 10rem;
}
section .block-sm {
  margin-block: 5rem;
}

.front {
  padding: 2rem 1rem;
  margin-bottom: 5rem;
  color: #fff;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../homeBackground.webp");
  position: relative;
  background-size: cover;
  background-position: 50% 70%;
}
.front .title {
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 0 2px #000;
}
.front .date {
  opacity: 0.9;
  font-weight: 500;
}
.front .call-to-action {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
}

.important-dates-title {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.important-dates tr {
  cursor: default;
  transition: all 0.2s;
}
.important-dates td {
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding-block: 3px;
}
.important-dates .name {
  padding-inline: 0.8rem 1.5rem;
  color: #fff;
  background-color: #be284b;
}
.important-dates .date {
  text-align: right;
  padding-inline: 1.5rem 0.8rem;
}

::-moz-selection {
  color: #fff;
  background-color: darkblue;
}

::selection {
  color: #fff;
  background-color: darkblue;
}

.committee .name {
  font-weight: bold;
}
.committee h5 {
  background-color: #a61f3f;
  color: #fff;
  padding: 4px 1rem;
  display: table;
  font-weight: bold;
  font-size: 1.5rem;
} /*# sourceMappingURL=style.css.map */
