/* Global Page Styles */

html,
body {
    margin: 0;
    background-color: #000;
    background-image: url('../images/webp/Background.webp');
    background-repeat: no-repeat;
    background-position: top center;
    color: #FFF;
    font-family: 'MyriadPro-Regular', Helvetica, Arial;
    font-size: 24px;
}

a:link {
    text-decoration: none;
    color: #FFF;
}

a:visited {
    text-decoration: none;
    color: #FFF;
}

a:hover {
    text-decoration: underline;
    color: #FFF;
}

a:active {
    text-decoration: none;
    color: #FFF;
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('../fonts/Myriad Pro Regular/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Myriad Pro Regular/MyriadPro-Regular.otf') format('opentype'), url('../fonts/Myriad Pro Regular/MyriadPro-Regular.woff') format('woff'), url('../fonts/Myriad Pro Regular/MyriadPro-Regular.ttf') format('truetype'), url('../fonts/Myriad Pro Regular/MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe Script Regular';
    src: url('../fonts/Segoe Script Regular/Segoe Script Regular.eot');
    src: url('../fonts/Segoe Script Regular/Segoe Script Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Segoe Script Regular/Segoe Script Regular.woff2') format('woff2'), url('../fonts/Segoe Script Regular/Segoe Script Regular.woff') format('woff'), url('../fonts/Segoe Script Regular/Segoe Script Regular.ttf') format('truetype'), url('../fonts/Segoe Script Regular/Segoe Script Regular.svg#segoe_scriptregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* Local Page Styles */

.mainContainer {
    margin-left: auto;
    margin-right: auto;
    background: #222;
    width: 100%;
    max-width: 980px;
    overflow: hidden;
    box-shadow: 0px 10px 25px #111;
    display: flex;
    flex-direction: column;
}

.hDivider {
    margin: 8 auto;
    width: 100%;
    height: 1px;
    background: #333;
}

.rounded {
    border-radius: 16px;
}

.image-md {
    object-fit: cover;
    width: 250px;
    height: 250px;
}

.signature {
    font-family: 'Segoe Script Regular';
    font-size: 24px;
    font-style: italic;
    text-align: left;
}


/* Header Styles */

.headerImage {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
}

.headerTop {
    padding: 1em 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.headerLogo {
    font-size: 32px;
    font-family: 'Segoe Script Regular';
    font-style: italic;
}

.headerContent {
    width: 100%;
    text-align: center;
}

.headerContent img {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}


/* Main Content Body */

.siteBody {
    width: 100%;
    box-sizing: border-box;
    background-image: url('../images/webp/Turtle_FTW.webp');
    padding: 1em 2em;
}

.siteBody p {
    text-align: center;
    color: #FFF;
    font-family: Tahoma, Arial;
    font-size: 16px;
    font-weight: normal;
}


/* Show Page Styles */

.showScheduleTitle {
    text-align: center;
    color: #57F7CF;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 5px #666;
    margin-bottom: 5px;
}

.showsBlock {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
    text-align: center;
}

.showsBlock span {
    text-decoration: underline;
    font-weight: bold;
}


/* Footer Styles */

.footerBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    padding: 24px 16px;
    width: 100%;
    background-color: #222;
    text-align: left;
    font-family: Tahoma, Arial;
    font-size: 12px;
    font-weight: normal;
}

.copyrightText {
    margin-right: 3em;
}

.footerContactBox {
    flex-grow: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footerSocialBox {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.footerContactRow {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footerContactLink {
    padding: 2px 0;
}

@media screen and (max-width: 980px) {
    .siteBody {
        padding: 1em 1.25em;
    }
    .footerBox {
        flex-direction: column;
    }
    .copyrightText {
        margin: 0;
    }
    .footerContactBox {
        margin-top: 1.5em;
        align-items: center;
    }
    .footerSocialBox {
        justify-content: center;
    }
}