
html, body {
    margin: 0;
    padding: 0;
}

.content-wrapper {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure content is above the background */
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1{
    color: #ffffff;
    padding: 12px;
    text-align: left;
    position: absolute;
    top: 30%;
    left: 8%;
    max-width: 600px;
    word-wrap: break-word;
    font-size: 80px;
}

h2 {
    color: #ffffff;
    padding: 12px;
    text-align: left;
    font-size: 40px;
}

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

th {
    background-color: #1f1f1f56;
    color: #ffffff;
    font-weight: normal;
    padding: 12px;
    text-align: left;
 
}


td {
    padding: 8px;
}


button {
    background-color: #5fc9bf; /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;
}

button:hover {
    background-color: #1e8f84;
}

.slidecontainer {
    width: 100%;
}

.slider {
    appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #5fc9bf;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #5fc9bf;
    cursor: pointer;
}


.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Ensure video is behind content */
    transform: translate(-50%, -50%);
}
