*, *::before, *::after {
    box-sizing: border-box;
}


@font-face {
  font-display: swap; 
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/ubuntu-v21-latin-regular.woff2') format('woff2'); 
}


@font-face {
  font-display: swap; 
  font-family: 'Ubuntu';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/ubuntu-v21-latin-italic.woff2') format('woff2'); 
}



:root {
    font-family: 'ubuntu', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}


.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 90rem;
    margin-inline: auto;
    padding-inline: auto;
    font-weight: 400;
    font-size: 1.125rem;
    font-style: normal;
    line-height: 1.6;
    text-align: center;
}

header {
    width: 100%;
    background-color: oklch(0.1843 0.0866 243.18);
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 1.25rem;
    font-size: 1.2rem;
}



.logo {
    color: oklch(1 0 0);
    display: flex;
    align-items: center;


    img {
        width: 2.5rem;
    }
}



nav {
    ul {
        /* color: oklch(0.3239 0.2075 271.18); */
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
        margin: 1rem;
        list-style: none;
        align-items: flex-end;

    }

    a {
        text-decoration: none;
        color: oklch(1 0 0);
        transition: color .3s ease-in-out;

        &:hover {
            color: oklch(0.8961 0.131 243.18);
        }

        
    }
}


.lijn {
    height: 0.125rem; 
    background-color: black; 
    width: 100%;
}

.labos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;

    li {
        display: flex;
        flex-direction: column;
        box-shadow: 0 0.25rem 0.5rem 0 oklch(0 0 260.88);
        transition: 0.3s;
        border-radius: 1rem;
        padding: 1rem;
        margin: 1rem;
        overflow: hidden;
        position: relative;
        flex: 1 1 calc(20% - 2rem);
        min-width: 15rem;

        &:hover {
            transform: scale(1.05);

        }
    }

    img {
        order: -1;
        width: 100%;
        height: 6,25rem;
        display: block;
    }

    a {
        text-decoration: none;
        color: oklch(0.5 0.0274 241);
    }
}

footer {
    width: 100%;
    background-color: oklch(0.1843 0.0866 243.18);
    color: oklch(0.8196 0.37 84.35);

    p {
        text-align: center;
        color: oklch(1 0 0);

    }
}

a[href*="instagram.com"] {
  text-decoration: none;
  color: oklch(0.8196 0.37 84.35);
}






