.navBar {
  background-color: #b175ee;
  border-radius: 10px;
  opacity: 50%;
  transition: opacity 0.3s;
}

.navBar:hover {
  opacity: 100%;
}

.navBar a {
  font-family: Gaegu;
  font-size: 32px;
  font-weight: bold;
  color: #e1beff;

  text-decoration: none;
  padding: 0px 5px;
  transition: font-size 0.3s;
}

.navBar a:hover {
  color: white;
  font-size: 30px;
}

.navBar a.active {
  text-decoration: overline;
}

.eventsLCC {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.eventsLCC a {
  font-family: Gaegu;
  text-decoration: none;
  color: #e1beff;

  border-radius: 5px;
  font-weight: bold;
  font-size: 40px;
  background-color: #b175ee;
  padding: 5px 20px;

  transition: font-size 0.3s;
}

.eventsLCC a:hover {
  font-size: 45px;
  color: white;
}