@charset "utf-8";
html
{
    background-image: url(Culdesac.jpg);
    background-position:top;
    background-repeat: repeat-y;
    background-size: 100%;
}
header img
{
    width: 100%;
    display: block;
}
body
{
    margin: 0;
}
main
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    background-color: lightgray;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: brown;
}
main h1
{
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}
main p
{
    margin-bottom: 0;
}
iframe
{
    float: right;
    width: 45%;
}
nav ol
{
    list-style: none;
    margin: 0;
    padding: 0;
}
nav li
{
    display: block;
    width: 33.333%;
    float: left;
}
nav a
{
    display: block;
    background-color: white;
    line-height: 40px;
    text-decoration: none;
    text-align: center;
    color: black;
}
nav a:hover
{
    background-color: white;
    color: black;
    font-size: 1.2em;
    transition: background-color 0.1s ease-in 0.1s,
                color 0.1s ease-in 0.1s,
                font-size 0.1s ease;
}
footer
{
    display: block;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
footer p
{
    margin: 0;
}
a#navicon
{
    display: none;
}

/*Specific to the page*/

table
{
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    border: 10px double black;
}
tfoot, thead
{
    text-align: center;
    color: black
}
td
{
    border: 1px solid black;
    height: 25px;
}
th
{
    text-align: center;
    color: black;
}
tr
{
    color: brown;
}

/*mobile*/

@media only screen and (max-width: 768px)
{
    a#navicon
    {
        display: block;
    }
    a#navicon img
    {
        width: 35px;
        height: 35px;
    }
    nav ol
    {
        display: none;
    }
    a#navicon:hover+ol, nav ol:hover
    {
        display: block;
    }
    tbody, table, th, td, tr
    {
        display: block;
        clear: both;
    }
    thead, tfoot
    {
        display: none;
    }
    tbody
    {
        position: relative;
        width: 100%;
    }
    td
    {
        position: relative;
        padding-left: 40%;
        height: auto;
    }
    td::before
    {
        content:attr(data-label);
        position: absolute;
        top: 0%;
        left: 0%;
    }
    h1
    {
        text-align: center;
    }
}
