@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');
  .navbar {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
  font-family: "SUSE", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: white;
  font-size: 20px;
}
.sidebar {
  backdrop-filter: blur(10px);
  background-color: rgb(0, 0, 0);
  position: fixed;
  top: 0;
  left: -100vw;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  color: rgb(148, 19, 19);
  transition: 0.8s;
}
#homebtnn{
  display: none;
}
.sidebar ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sidebar ul li {
  padding: 10px 0px;
  list-style: none;
}
.sidebar ul li a {
  font-size: 20px;
  width: 100%;
  text-decoration: none;
  color: white;
}
.leftNav {
  width: 450px;
  border-bottom: 2px solid yellow;
  border-radius: 0 0 50px 0;
}
.rightNav {
  width: 450;
  border-bottom: 2px solid yellow;
  border-radius: 0 0 0 50px;
}
.menuNav {
  display: none;
}
.menuNav ul li {
  list-style: none;
}
.menuNav ul li {
  color: yellow;
}
.navbar div:nth-child(odd) {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.445);
  backdrop-filter: blur(30px);
}

.navbar div ul:nth-child(odd) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar div ul li {
  list-style: none;
  margin: 0px 40px;
}
.navbar div ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
@media only screen and (max-width: 1024px){
  #eventTitleText h1 {
    font-size: 1.5em;
  }
  .navbar {
    background: linear-gradient(
      to bottom,
      rgb(0, 0, 0),
      rgba(0, 0, 0, 0.706),
      rgba(0, 0, 0, 0.455),
      rgba(70, 69, 69, 0)
    );
  }
  .navbar div:nth-child(odd) {
    display: none;
  }
  .menuNav {
    display: block;
  }
  .navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0px;
  }
}