*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    margin: 10px;
    font-family: 'Open Sans', 'sans-serif';
    background-color: #fff;
}

html {
    overflow-y: scroll;
}

p {
    margin: 0;
}
.header {

    position: sticky;
    top: 0;
}
.wrapper {
    max-width: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid #ddd;
}

th,
td {
    padding: 8px;
    text-align: left;
}

/* Define background colors for alternating rows */
tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
    /* Light gray background */
}

tbody tr:nth-child(even) {
    background-color: #ffffff;
    /* White background */
}

/* Apply different styles for small screens */
@media (max-width: 600px) {
    table {
        width: 100%;
        border-collapse: collapse;
    }

    th,
    td {
        display: block;
        width: 100%;
        padding: 8px;
        text-align: left;
    }

    /* Define background colors for alternating rows */
    tbody tr:nth-child(odd) {
        background-color: #f2f2f2;
        /* Light gray background */
    }

    tbody tr:nth-child(even) {
        background-color: #ffffff;
        /* White background */
    }
}

.content {
    padding-bottom: 4em;
    border: 2px solid gray;
    border-radius: 2.5px;
}

.content a:visited {
    color: #000000;
    text-decoration: none;
}

.content a:link {
    text-decoration: none;
    color: #000000;
}

.content a:hover {
    color: red;
}

.content a:active {
    color: navy;
}

.content .video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media screen and (min-width: 375px) and (max-width:1024px) {
    .content {
        border: 1px solid gray;
    }
}


.wrapper>* {
    background-color: #fff;
    color: #000;
    border-radius: 2.5px;
}


/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */

@supports (display: grid) {
    .wrapper>* {
        width: auto;
        margin: 0;
    }
}

/* Start of responsive footer */

.footer {
    width: 100%;
    position: relative;
    height: auto;
    background-color: rgb(0, 0, 0);
    text-align: center;
}

.footer .col {
    width: 190px;
    height: auto;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 5px 20px 20px 20px;
}

.footer .col h1 {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 17px;
    padding: 20px 0px 20px 0px;
    color: #696969;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 0.250em;
}

.footer .col ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer .col ul li {
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    font-weight: bold;
    padding: 12px 0 12px 0;
    cursor: pointer;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
}

.social ul li {
    display: inline-block;
    padding-right: 5px !important;
}


/* There are 4 link states: a:active, a:hover, a:visited, and a:link.
Special order rules apply to link state properties:

    a:hover MUST go after a:link and a:visited
    a:active MUST go after a:hover*/

.col a:visited {
    color: #ffffff;
    text-decoration: none;
}

.col a:link {
    text-decoration: none;
    color: #ffffff;
}

.col a:hover {
    color: red;
}

.col a:active {
    color: #000;
}

.clearfix {
    clear: both;
}

@media only screen and (min-width: 1280px) {
    .contain {
        width: 1200px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1139px) {
    .contain .social {
        width: 1000px;
        display: block;
    }
}

@media only screen and (max-width: 950px) {
    .footer .col {
        width: 50%;
    }

    .footer .col h1 {
        font-size: 14px;
    }

    .footer .col ul li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 500px) {
    .footer .col {
        width: 50%;
    }

    .footer .col h1 {
        font-size: 14px;
    }

    .footer .col ul li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 340px) {
    .footer .col {
        width: 100%;
    }
}