* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    /* font-size: 10; MAG NIET*/
    font-size: 62.5%;
    /* bij een standaardgroote van 16 px is 1rem nu 10px*/
}

body {
    font-family: sans-serif;
    font-size: 1.6rem;
}

.header {
    background: black;
    display: flex;
    height: 12rem;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.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: 0.2rem;
}

.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.9s all;
}

.mainNavigationList {
    list-style: none;
}

.mainNavigationListItem {
    color: white;
    font-size: 350%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
}

.mainNavigationListItem>a {
    text-decoration: none;
    color: white;
}

.bigFigure {
    width: 100%;
    height: 110vh;
}

.bigFigure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections {
    width: 100%;
    padding: 4rem;
}

.collectionsTitle,
.infoTitle {
    font-size: 350%;
    color: black;
    text-transform: uppercase;
    font-weight: 400;
}

.collectionsList {
    list-style: none;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.collectionsListItem {
    width: 50rem;
    height: 70rem;
    flex-shrink: 1;
    flex-grow: 1;
}

.collectionsListItem>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    padding: 4rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.block {
    width: 40rem;
    flex-shrink: 1;
    flex-grow: 1;
}

.info p {
    max-width: 40ch;
}

.info-form{
    display: flex;
    justify-content: center;
    align-items: center;
}

.form{
    display: flex;
    background: black;
    justify-content: center;
}

form {
    margin: 2rem;
    width: 40rem;
    min-height: 40rem;
    background: black;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 4rem;
    font-size: 3rem;
    gap: 2rem;
    border-radius: 2.5rem;
    border: 1px solid white;
}

form div {
    background: black;
    display: flex;
    color: white;
    flex-direction: column;
    gap: 1rem;
}

form label {
    border-bottom: 2px solid white;
}

textarea{
    height: 35ch;
    width: 100%;
    font-size: 1.6rem;
    font-family: sans-serif;
    border: 1px solid black;
    padding: 1rem 2rem;
    background: white;
    resize: none;
}

.submit{
    background: black;
    color: white;
    font-size: 1.6rem;
    border: 1px solid white;
}

.submit:hover{
    cursor: pointer;
}

input{
    display: block;
    width: 30ch;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    border: 1px solid black;
}



.footer {
    height: 12rem;
    background: black;
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.footerNavigations {
    list-style: none;
}

.footerNavigationItem {
    font-size: 80%;
    font-style: italic;
}

.footerNavigationItem>a {
    color: white;
    text-decoration: none;
}

.footer>address {
    font-size: 80%;
}

@media only screen and (max-width: 70rem) {
    body {
        font-size: 1.4rem;
    }

    .headerTitle {
        font-size: 380%;
    }
}