@media all and (min-width: 768px) {
    .deskContent {
        display: block;
    }
    .phoneContent {
        display: none;
    }
    html {
        font-size: 16px;
    }   
}

@media all and (max-width: 767px) {
    .deskContent {
        display: none;
    }
    .phoneContent {
        display: block;
    }
    html {
        font-size: 14px;
    }
}

body {
    background-image: url('/images/BadTickersAtTimberyard2024.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #000;
    color: #ffffff;
    margin-bottom: 30px;
    max-height: 100vh;
}

html {
    position: relative;
    min-height: 100%;
}

footer {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; 
}

.responsiveCal {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.responsiveCal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}