/* Reset some default styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  color:white;
font-family: "setimo", sans-serif;
font-weight: 800;
font-style: normal;
font-size: 1.1em;
}

a {
  text-decoration: none;
  color: #6956a4;
}

.center-table {
  margin: 0 auto;
  max-width: 1000px; /* Optional: You can adjust this to set a maximum width for the centered table */
  overflow-x: auto;
}

/* Style the video background container */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Style the video to cover the entire container */
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Style for three column centered table*/

.table-container {
  overflow-x: auto;
  
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: center;
}

/* Make the table responsive */
@media screen and (max-width: 1000px) {
  th, td {
    display: block;
    width: 100%;
  }

  th {
    text-align: center;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* Text Styling */

p { color: #ffffff; font-family: 'setimo', sans-serif; font-size: 54px; font-weight: 300; line-height: 58px; margin: 0 0 58px; }

/* Buttons */

.btn {
  font-family: "setimo", sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: #6956a4;
  background-color: #ffffff;
  padding: 8px 27px;
  border: solid #6956a4 1px;
  box-shadow: rgb(0, 0, 0) 0px 0px 0px 0px;
  border-radius: 50px;
  transition: 1000ms;
  transform: translateY(0);
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
}

    /* Flexbox container to align buttons side by side */
    .btn-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap; /* Allows buttons to wrap to a new line when there's not enough space */
      padding-top:12px;
    }

    /* Media query for responsive layout */
    @media (max-width: 600px) {
      .btn-container {
        flex-direction: column; /* Stack buttons vertically on smaller screens */
        align-items: center; /* Center buttons in the column */
      }



