@font-face {
    font-family: 'cl'; /* Kies een naam voor je font */
    src: url('../fonts/cl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cl';
    src: url('../fonts/cl-i.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'cl';
    src: url('../fonts/cl-b.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'cl';
    src: url('../fonts/cl-bi.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'bellarina'; /* Kies een naam voor je font */
    src: url('../fonts/bellarina.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
    background-image: url('../images/bg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    justify-items: center;
    align-content: center;
}

header {
    height: auto;    
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    line-height: 1.2;
}

h1 {
    font-family: "cl", sans-serif;
    font-size: 6.2rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    padding: 0;
    margin: 0;
    text-shadow: 1px 1px 3px #7c746b;
    letter-spacing: 0.07em;
}
h2 {
    font-family: "cl", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
    padding: 0;
    margin: 0;

    text-shadow: 1px 1px 3px #7c746b;
    letter-spacing: 0.07em;
}
h3 {
    font-family: "bellarina", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #7c746b;
    text-align: center;
}

ul {
    display: flex;
    list-style-type: none;
    overflow: hidden;
    justify-content: center; 
    gap: 0.5rem;
}
li {
    width: auto;
}
a img {
    display: block;
    width: 60px;
    height: auto;
    margin: 0 auto
}

hr {
    width: 100%;
    border: 1px solid #fff;
    margin: 1rem 0;
}

@media (min-width: 600px) {
    header {
        padding: 3rem 9rem;
    }

    h3 {
        font-size: 4rem;
    }
}