*{
    padding:0;
    margin:0;
    box-sizing:border-box;
}

body{
    font-family:sans-serif;
    font-size:1rem;
}

.header{
    background:black;
    display:flex;
    height:7.5rem;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    padding-left:40px;
    padding-right:40px;
}

.headerTitle{
    color:white;
    text-transform: uppercase;
    font-size:400%;
    font-weight:400;
}

.headerButton{
    text-transform:uppercase;
    background:transparent;
    color:white;
    border:none;
    font-size:150%;
    letter-spacing:2px;
}

.headerButton:hover{
    cursor:pointer;

}

.mainNavigation{
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    visibility:hidden;
    opacity:0;
    transition:0.8s all;

}

.mainNavigationList{
    list-style:none;
}

.mainNavigationListItem{
    color:white;
    font-size:300%;
    text-transform:uppercase;
    text-align:center;
    margin-bottom:20px;
}

.mainNavigationListItem > a{
    text-decoration:none;
    color:white;
}

.bigFigure{
    width:100%;
    height:100%;
}

.bigFigure > img{
    width:100%;
    height:100%;
}



.collections{
    width:100%;
    padding:40px;


}

.collectionsTitle, .infoTitle{
    font-size:350%;
    color:black;
    text-transform:uppercase;
    font-weight:400;
    margin-bottom:40px;

}

.collectionsList{
    list-style:none;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.collectionsListItem{
    width:31.25rem;
    height:44rem;
    flex-shrink:1;
    flex-grow:1;
}


.collectionsListItem > img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.info{
    padding:40px;
    display:flex;
    gap: 40px;
    flex-wrap:wrap;
}


.block{
    flex-shrink:0;
    flex-grow:1;
}

.info p{
    max-width:50ch;
}

.footer{
    height:7.5rem;
    background:black;
    display:flex;
    color:white;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    padding: left 40px;;
    padding-right:40px;
}

.footerNavigationItem{
    font-size:80%;
    font-size:italic;
}

.footerNavigationItem > a{
    color:white;
    text-decoration:none;
}

.footer > address{
    font-size:80%;
}

@media screen and (max-width:700px) {
    body{
        font-size:14px;
    }
    .headerTitle{
        font-size:380%;
    }

}
