/* Clear things up */

* {
    margin: 0;
    padding: 0;
    font-family: Lato, Verdana, Tahoma, Arial, sans-serif;
    box-sizing: border-box;
}

html, body {
}

/* Selection */

::selection {color: #ffffff; background: #1de9b6;}
::-moz-selection {color: #ffffff; background: #1de9b6;}

/* main */

body {
    height: 100vh;
    width: 100vw;
    min-height: 100%;
    color: #222222;
    background: url(../bg.png);
    overflow-x: hidden;
}

h1 {
    font-family: Pacifico;
    font-weight: 100;
    padding: 3px 10px;
    color: #fafafa;
    background: #00796b;
}

table {
    width: 100vw;
    border-spacing:0;
    border-collapse: collapse;
}

table tr:first-child {
    color: #fafafa;
    background: #009688;
}

table tr:nth-child(odd) {
    
}

table tr:nth-child(even) {
    
}

table tr th, table tr td {
    text-align: center;
}

table tr th {
    font-weight: 300;
}

table tr .h {
    font-size: 8pt;
    padding-top: 0.3em;
    vertical-align: text-top;
}

table tr td {
    font-weight: 300;
    padding: 0.5em 0;
    border: 1px solid #dddddd;
}

span {
    font-size: 12pt;
    display: block;
}

table tr .sub {
}

table tr .te {
    display: none;
}

table tr .room {
}

table .break {
    height: 5px;
}

a {
    display: block;
    width: 100%;
    color: #222222;
    text-decoration: none;
    font-weight: 300;
    padding: 1em;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #dddddd;
}

a:hover {
    color: #fafafa;
    background: #009688;
}

@media only screen and (min-width : 768px) {

    table tr .sub {
        display: inline-block;
        font-weight: 400;
    }

    table tr .te {
        display: inline-block;
        
    }

    table tr .room {
        display: inline-block;
        
    }
    
    table tr span {
        padding: 0 0.3em;
    }
    
    table tr td {
        padding: 0.5em 0.3em;
    }
}