body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #48041c;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #48041c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
   /* Space between logo, links, and toggle */
  width: 100%;
}

.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; 
  font-family: Georgia, serif;
}

.navbar .logo .logo-link {
  display: block;
}

.navbar .logo .logo-link img{
  height: 50px;
  margin: 5px 20px; /* Adjust the margin as needed */
}

.navbar .section-link {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar .section-link:hover {
  background-color: #ddd;
  color: black;
}

#sidebar-active {
  display: none;
}

.open-sidebar-button, .close-sidebar-button {
  display: none;
}

/* Mobile Styles */
@media (max-width: 800px) {
  .links-container {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;
    background-color: #48041c;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }

  .navbar .section-link {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }

  .open-sidebar-button, .close-sidebar-button {
    padding: 20px;
    display: block;
  }

  #sidebar-active:checked ~ .links-container {
    right: 0;
  }

  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}

/* Toggle Button CSS */
.toggle-container {
  display: flex;
  align-items: center;
  padding: 14px 20px;
}

.toggle-input[type="checkbox"] {
  display: none;
}

.toggle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  position: relative;
  transition: background-color 0.1s;
}

.circle svg {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: white;
}

.sun {
  left: 4px;
  opacity: 1;
  transition: opacity 0.1s;
}

.moon {
  right: 4px;
  opacity: 0;
  transition: opacity 0.1s;
}

.toggle-input[type="checkbox"]:checked + label .circle {
  background-color: black;
}

.toggle-input[type="checkbox"]:checked + label .sun {
  opacity: 0;
}

.toggle-input[type="checkbox"]:checked + label .moon {
  opacity: 1;
}

.header {
  text-align: center;
  background: white;
  color: black;
  padding:20px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.header h1 {
  font-size: 50px;
}

.debate-type {
    background-color: #fff;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    cursor: pointer;
}


.debate-type:hover {
    background-color: #e6f7ff;
}

.content {
    display: none;
    margin-top: 10px;
}

.debate-type .content a {
  color: #48041c;
  font-weight: bold;
  text-decoration: none;
}

.debate-type .content a:hover {
  text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 50px;
    color: #777;
}

@media (max-width: 800px) {
  .header h1 {
  font-size: 30px;
}
  .debate-type{
    font-size: .8em;
  }
  .content{
    font-size: 1.1em; 
   }
}
