@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: "Inter", sans-serif;
}
main{
    padding-top:40px;
    padding-left:40px;
    padding-right:60px;
    padding-bottom:80px;
    display:flex;
}
footer{
    text-align:right;
    padding-bottom:40px;
    padding-right:60px;
}
.menu{
    width:350px;
    position:sticky;
    top:40px;
}
.contact{
    display: inline-block;
    font-size:14px;
    font-weight:500;
}
.gallery{
    column-count:4;
    gap:10px;
}
.item{
    margin:0;
    margin-bottom:5px;
    transition:.2s ease;
}
.item img{
    width:100%;
}
.item:hover{
    filter: brightness(110%);
}
h1{
    font-size:3rem;
    font-weight:400;
}
h2{
    font-size:2rem;
    font-weight:200;
}
p{
    font-size:14px;
    font-weight:400;
    line-height:20px;
}
a{    
    color: #000000;
    text-decoration:none;
}
@media(max-width:1240px) and (min-width:1024px){
.gallery{
    column-count:3;
}
}
@media(max-width:1024px) and (min-width:810px){
.gallery{
    column-count:2;
}
p{
    text-wrap: balance;
}
}
@media(max-width:810px){
main{
    display:block;
    padding-top:20px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:40px;
}
footer{
    text-align:center;
    padding-bottom:40px;
    padding-right:0px;
}
.menu{
    width:100%;
    text-align:center;
}
.contact{
    font-size:13px;
    font-weight:500;
}
.gallery{
    column-count:1;
}
.item:hover{
    filter: brightness(100%);
}
.description{
    text-align:center;
}
h1{
    font-size:24px;
    font-weight:400;
}
h2{
    font-size:20px;
    font-weight:300;
}
p{
    font-size:13px;
    font-weight:400;
    line-height:18px;
    text-wrap: balance;
}
}