* {
    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: 7.5rem;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

.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 voor animatie */
    opacity: 0;
    transition: 0.2s;
}

.mainNavigationList {
    list-style: none;
}

.mainNavigationListItem {
    color: white;
    font-size: 350%;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.25rem;
}

.mainNavigationListItem a {
    color: white;
    text-decoration: none;
}

.bigFigure {
    width: 100%;
    height: 110vh;
}

.bigFigure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections {
    width: 100%;
    padding: 5rem;
}

.collectionsTitle,
.infoTitle {
    font-size: 350%;
    color: black;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 5rem;
}

.collectionsList {
    list-style: none;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.collectionsListItem {
    width: 31.25rem;
    height: 43.75rem;
    flex-grow: 1;
    flex-shrink: 1;
}

.collectionsListItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    padding: 5rem;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.block {
    width: 50rem;
    flex-shrink: 1;
    flex-grow: 1;
}

.footer {
    height: 7.5rem;
    background: black;
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

.footerNavigation {
    list-style: none;
}

.footerNavigationItem,
.footer address {
    font-size: 80%;
    font-style: italic;
}

.footerNavigationItem a {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 700px) {
    body {
        font-size: 14px;
    }

    .headerTitle {
        font-size: 380%;
    }
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    resize: vertical;
}

input[type="submit"] {
    background-color: #04aa6d;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 5%;
}

.fat {
    font-weight: 700;
    font-size: 1.5rem;
}