@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');
@import 'dist/jquery.fancybox.css';


body{
    background-color: #333;
    color: #fff;
    margin: 0;
    font-family: 'Merriweather', serif;
    line-height: 1.7;
}
img{
    border: 0;
    max-width: 100%;
}
a{
    color: #fff;
    text-decoration: none;
}
p a{
    border-bottom: 1px dashed #aaa;
}
p a:hover{
    border-bottom: 1px solid #fff;
}
header img{
    margin: auto;
    display: block;
}
main p,
footer p{
    margin: auto;
    max-width: 900px;
    padding: 5vw;
    font-size: 17px;
}
.pictures{
    display: grid;
    gap: 1rem;
}
.pictures img{
    display: block;
}
.iw {
	font-size: 10px;
	padding: 10px 5vw;
	text-align: right;
}
.iw a {
	color: #ccc;
	text-decoration: none;
}



@media only screen and ( min-width: 800px ) {
    .pictures{
        grid-template-columns: 1fr 1fr 1fr;
    }
    @supports(display: grid) {
    .pictures > div{
        height: 25vw;
        overflow: hidden;
    }
    }

    .pictures img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 1.7s ease;
    }
    .pictures > div:hover img {
        transform: scale(1.08);
    }
}