/* * {outline: 1px solid orange} */
html {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: center;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img {
    width: 100%;
    height: auto;
}
#wrap {
    margin-inline: auto;
    max-width: 1100px;
    padding-left: calc(.5rem + .5vw);
    padding-right: calc(.5rem + .5vw);
}
#title {
    text-align: left;
	margin: 10px 0 0 10px;
	color: #666;
    font: normal 3.2rem 'Nunito', sans-serif;
}
    #title a, #title a:hover, #title a:visited {
        color: #666;
        text-decoration: none;
    }
        @media screen and (max-width: 500px) {
            #title {
                text-align: center;
                margin: 0;
            }
        }
.preview {
    clear: both;
    font-size: 0;
}
    .preview ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
        gap: .5rem;
    }
    .preview li {
        font: normal 1rem 'Nunito', sans-serif;
        background: url('images/pussy.png') no-repeat;
        background-size: 100% auto;
    }
    .preview a {
        display: block;
        aspect-ratio: 1 /1 ;
    }
            @media screen and (min-width: 340px) and (max-width: 1200px) {
                .preview li:nth-last-child(1) {
                    display: none;
                }
            }
            @media screen and (min-width: 450px) and (max-width: 1000px) {
                .preview li:nth-last-child(2) {
                    display: none;
                }
            }
            @media screen and (max-width: 900px) {
                .preview li:nth-last-child(3) {
                    display: none;
                }
            }
            @media screen and (max-width: 800px) {
                .preview li:nth-last-child(4) {
                    display: none;
                }
            }
            @media screen and (max-width: 690px) {
                .preview li:nth-last-child(3), .preview li:nth-last-child(4) {
                    display: inherit;
                }
            }        
.list {
	clear: both;
    font-size: 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin: 2rem 0;
    overflow: clip;
}
    .list span {
        color: #bc6889;
        font-weight: bold;
    }
    .list a {
        font: normal calc(1.5rem + .6vw) 'Nunito', sans-serif;
        color: #001a20;
        text-decoration: none;  
        padding: .8rem calc(1rem + 1vw);      
        border: 1px solid #bbb;
    }
    .list a:hover {
        border: 1px solid #fff;
    }
            @media screen and (max-width: 770px) {
                .list {
                    grid-template-columns: 1fr;
                }
            }
#footer {
	clear: both;
	padding: 50px 0 0 0;
	margin: 0;
	width: 96%;
	font: normal 14px 'Helvetica', sans-serif;
}
#footer a {
    color: #555;
    text-decoration: none;
}