body {
  /* background-color: #f2f2f2; */
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: black;
}

.brand-title {
  font-size: 1.5rem;
  margin: 0.5rem;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 1rem;
}

.navbar-links li:hover {
  background-color: black;
}
.navbar-links li a:hover {
  color: white;
}
.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  /* justify-content: space-between; */
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    padding: 0.5rem 1rem;
  }

  .navbar-links.active {
    display: flex;
  }
}

.container {
  background-image: url("{{ url_for('static', filename='images/com2.jpg') }}");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  padding-top: 200px;
  color: white;
  height: 55vh;
}

h1 {
  font-size: 48px;
  color: #333;
}

#countdown {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
}
