*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}

html{
font-size: 62.5%;
}
body{
    font-family: sans-serif;
    font-size: 1.6rem;
}

.header{
    background:black;
    display: flex;
    height: 12rem;
    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;
    /* extra for animation */
    opacity:0;
    transition: 0.6s all;
}

.mainNavigationList{
    list-style:none;
}

.mainNavigationListItem{
    color:white;
    font-size:350%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.mainNavigationListItem > a{
    text-decoration: none;
    color:white;
}

.bigFigure{
    width:100%;
    height:90vh;
}

.bigFigure > img{
    width:100%;
    height:100%;
    object-fit: cover;
    background-position: right;
}

.collections{
    width:100%;
    padding:40px;
}

.collectionsTitle, .infoTitle{
    font-size: 300%;
    color:black;
    text-transform: uppercase;
    font-weight:400;
    margin-bottom:40px;
}

.collectionsList{
    list-style: none;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    justify-content: center;
}

.collectionsListItem{
    width:50rem;
    height:70rem;
    background:black;
    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{
    width:40rem;
    flex-shrink: 1;
    flex-grow:1;
}

.footer{
    height:12rem;
    background:black;
    display:flex;
    color:white;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    padding-left:40px;
    padding-right:40px;
}

.footerNavigation{
    list-style:none;

}

.footerNavigationItem{
    font-size:80%;
    font-style:italic ;
}

.footerNavigationItem > a{
    color:white;
    text-decoration: none;
}
.footer > address{
    font-size:80%
}

form{
    margin: auto;
    width: 50rem;
    min-height: 40rem;
    background: white;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 4rem;
    font-size: 3rem;
    gap: 2rem;
    border-radius: 5px;
}
form label{
    border-bottom: 2px solid black;

}

form div{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
input{
    display: block;
    width: 30ch;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border: 1px solid black;
    background: #EEEEEE;
}

textarea{
    height: 35ch;
    width: 100%;
    font-size: 1.6rem;
    border: 1px solid black;
    font-family: sans-serif;
    padding: 1rem 2rem;
    resize: none;
    background: #EEEEEE;
}

.submit{
    background: black;
    color: #EEEEEE;
    font-size: 1.6rem;
    border: none;
}

.submit:hover{
    cursor: pointer;
}

@media screen and (maxwidth:70rem) {
    body{
        font-size:1.4rem;
    }
    .headerTitle{
        font-size:380%;
    }
}