 /* Reset & Base Styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
        height: 100%; 
        font-family: Arial, sans-serif; 
        line-height: 1.6;
    }

    /* Table styles */
    table {
        border-collapse: collapse;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        justify-self: center;
    }

    th, td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
    }
    
    /* Header / Banner */
    header {
        background-image: linear-gradient(to bottom, white 1%,5%,#023a8f 10%);
        color: #fff;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    h1 { 
        /*font-size: 1.5rem;*/
        color: #023a8f;
    }

    h2{
        color:#0098E4;
    }

    h3{
        color:#023a8f;
    }

    h4{
        color:#023a8f;
    }

    /* Navigation */
    nav {
        display: flex;
        justify-content: center;
    }
    nav ul {
        list-style: none;
        display: flex;
    }
    nav ul li {
        position: relative;
        margin-left: 20px;
    }
    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }
    nav ul li a:hover {
        text-decoration: underline;
    }

    /* Submenu Styles */
    nav ul li ul {
      display: none;
      position: absolute;
      background-color: #023a8f;
      min-width: 150px;
      border-radius: 4px;
      z-index: 1;
    }

    nav ul li:hover ul {
      display: block;
    }

    nav ul li ul li {
      margin: 0;
    }

    nav ul li ul li a {
      padding: 10px 15px;
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        background: #023a8f;
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 1;
    }
    .menu-toggle span {
        background: #fff;
        height: 3px;
        width: 25px;
        margin: 4px 0;
    }

    /* Main Content */
    main {
        padding: 20px;
        margin-bottom: 45px;
        height: 100%;
    }

    /* Footer Content*/
    footer {
        background-image: linear-gradient(to top, white 1%,5%,#023a8f 10%);
        color: white;
        text-align: center;
        padding: 10px;
        position: static;
        bottom: 0;
        width: 100%;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        header{
            justify-content: space-between;
        }
        nav ul {
            display: none;
            flex-direction: column;
            background: #023a8f;
            position: absolute;
            top: 50px;
            left: 0;
            width: 150px;
            max-height: 25vh;
            z-index: 1;
        }
        nav ul.show {
            display: flex;
        }
        .menu-toggle {
            display: flex;
        }

    /* Submenu Styles */
    nav ul li ul {
      display: none;
      position: absolute;
      left: 100%;
      top: 0%;
      background-color: #023a8f;
      min-width: 150px;
      border-radius: 4px;
      z-index: 1;
    }

    nav ul li:hover ul {
      display: block;
    }

    nav ul li ul li {
      margin: 0;
    }

    nav ul li ul li a {
      padding: 10px 15px;
    }
    }

video{
    width: 99%;
    height: auto;
}

.flex-container{
    z-index: -1;
    text-align: center;
}

button {
  background-color: #0098E4;
		border: none;
		color: white;
		font-size: .8em;
		padding: 1em 1.4em;
		position: relative;
		border-radius: 15px;
        z-index: 1;
}

.center{
    text-align: center;
}