html {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 16px;
}
body {
    background: #f6f3ec;
    margin: 0px;
    padding: 0px;
    font-family: Helvetica,Arial, sans-serif;
}
#clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    display: block;
    height: 0;
}
p {
    padding: 0;
    margin: 0 auto;
}
a, a:link, a:active, a:visited {
    color: #111;
    text-decoration: none;
}
a:hover {
    color: #333;
    text-decoration: underline;
}
h1, h2 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1%;
    text-align: left;
}
/* * {
    outline: 1px solid orange;
} */
img {
    width: 100%;
    height: auto;
    border: none;
}
ul, ol, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
em, i {
    font-style: normal
}
.wrap {
    margin-inline: auto;
    max-width: 1500px;
    padding-left: 1rem;
    padding-right: 1rem;
}
.header {
    margin-inline: auto;
    padding-top: .5rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
}
.headerimage {
    float: left;
    background: url(/images/logo.jpg) no-repeat;
    width: 320px;
    height: 102px;
    border: 0;
}
            @media screen and (max-width: 400px) {
                .headerimage {
                    width: 250px;
                    height: 80px;
                    background-size: contain;
                }
            }
.headertext {
    /* float: left; */
    padding-top: .5rem;
    margin-inline: auto;
    max-width: 860px;
    color: #666;
    font-size: .9rem;
}
    .headertext span {
        color: #8b2b13;
        font-weight: bold;
    }
            @media screen and (max-width: 720px) {
                .header {
                    grid-template-columns: 1fr;
                }
                .headerimage {
                    float: none;
                    margin-inline: auto;
                }
            }
            @media screen and (max-width: 580px) {
                .headertext p {
                    display: none;
                }
            }
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding-top: .25rem;
}
    .menu a {       
        font-size: .9rem;
        background-color: #d14100;
        color: #fff;
        padding: .3rem .8rem;
        border-radius: .2rem;            
    }
    .menu a:hover {
        background-color: #e8a03a;
        color: #fff;
    }            
h1 {
    color: #8b2b13;
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: .5rem;
}
h2 {
    color: #8b2b13;
    font-weight: bold;
    font-size: 1.1rem;
}
.video-container {
    width: 100%;
    margin: 0;
    float: left;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    
}
.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .3rem;
}




/* display: flex;
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
align-content:flex-start */

      
.thumbs {
    clear: both;
    padding-top: 1rem;
    margin-inline: auto;
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(max(180px, 250px), 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}
    .thumbs img {
        border: 1px solid #999;
    }
    .thumbs img:hover {
        border: 1px solid #666;
        cursor: pointer;
    }
            @media screen and (max-width: 1100px) {
                .thumbs {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
            @media screen and (max-width: 800px) {
                .thumbs {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media screen and (max-width: 500px) {
                .thumbs {
                    grid-template-columns: 1fr;
                }
            }
        .overlay {
            position: relative;
            /* display: inline-block; */
        }
            .overlay img {
                display: block;
            }
            .overlay a, a:hover {
                text-decoration: none;                
            }
            .overlay .description {
                position: absolute;
                left: 1px;
                width: 100%;
                filter: alpha(opacity=100);
                opacity: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                background: #e8b368;
                background: rgba(0,0,0,0.4);
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-transform: capitalize;
            }
            .description p {
                font-size: 1rem;
                padding: 0.2rem .5rem 0 .5rem;
                font-weight: 400;
                color: #fff;
                text-shadow: 1px 1px 1px #333;

            }
            .overlay:hover .description {
                filter: alpha(opacity=100);
                opacity: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
                    background: #e8a03a;
                    background: rgba(0,0,0,0.6);
            }
            .bottom {
                bottom: 1px
            }
.pagination {
    clear: both;
    color: #666;
    padding-top: 1rem;
    margin-inline: auto;
    font-size: 1.5rem;
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(4ch, 1fr)); */
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    gap: 1rem 1rem;
}
    .pagination a {
        font-size: 1.5rem;
        justify-self: center;
        padding: .5rem 2rem;
        background-color: #4f8622;
        text-decoration: none;
        color: #f6f3ec;
        /* color: #333; */
        border-radius: .5rem;
    }
    .pagination a:hover {
        background-color: #87c356;
        text-decoration: none;
        color: #f6f3ec;
    }
.tops {
    clear: both;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
    color: #e89068;
    margin: 0 auto;
    padding-top: 2rem;
    /* font-size: 1.4rem; */
    font-size: clamp(1.4375rem, 1.606rem + -0.2174vw, 1.5625rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
    gap: 1.5rem;
}
    .tops a:before {
    	content: "\2192\00a0";
        color: #e8a03a;
    }
    .tops a {
		text-align: left;
        padding: .2rem 0;
        font-weight: bold;
        text-decoration: none;
        color: #d14100;
    }
    .tops a:hover {
        text-decoration: none;
        color: #e8a03a;
    }
footer {
    clear: both;
    color: #333;
    margin-inline: auto;
    font-size: .9rem;
    padding-top: 2rem;    
}
    footer p {
        padding: .5rem 2rem .5rem 2rem;
    }
    footer p:before {
        content: 'All models were at least 18 years old when they were photographed. The site is in full compliance with 18 USC Section 2257. We have no control over the content of these pages. We take no responsibility for the content on any website which we link to, please use your own discretion while surfing the links.';
    }
    footer a {
        text-decoration: underline;
        color: #777;
    }
    footer a:hover {
        text-decoration: none
    }
.header_addon {
    clear: both;
    margin-inline: auto;
    padding: .5rem 0; 
}            
    .header_addon img {
        width: 300px;
        height: 120px;
    }
.footer_addon {
    clear: both;
    margin-inline: auto;
    margin: 1rem 0; 
}    