﻿body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

video#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1; /* behind everything */
  object-fit: cover;
}

h2 {
  font-weight: bold; /* Makes text bold */
  text-align: center; /* Keeps it centered */
  text-transform: uppercase; /* Converts text to all capital letters */
  font-size: 50px; /* Adjust the size as needed */
  color: white; /* Makes the text white */
}
h3 {
  font-weight: normal;
  margin: 3px 0px;
  text-align: center;
}

#termsFooter details {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background: #f9f9f9;
  cursor: pointer;
  max-width: 800px;
  margin: 20px auto;
}

#termsFooter summary {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  list-style: none;
}

#termsFooter summary::-webkit-details-marker {
  display: none; /* hide default arrow */
}

#termsFooter summary::after {
  content: " ▼";
  font-size: 14px;
}

#termsFooter details[open] summary::after {
  content: " ▲";
}


#termsFooter details {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background: #f9f9f9;
  cursor: pointer;
  max-width: 800px;
  margin: 20px auto;
}



