        @import url('https://fonts.googleapis.com/css2?family=Faustina:ital,wght@0,300..800;1,300..800&display=swap');

        h1, h2, h3, h4, h5, h6, p, a, .btn{
            font-family: "Faustina", serif;
            font-optical-sizing: auto;
            font-style: normal;
        }

        body {
            background-color: #1B3D70;
            color: white;
            padding-bottom: 5rem;
        }
        a {
            color: #FCD21D;
            text-decoration: none;
        }
        a:hover {
            color: #FCD21D;
            text-decoration: underline;
        }
        .logo {
            width: 150px;
        }
        .content {
            text-align: center;
        }
        .card {
            background-color: #2C4A7A;
            border: none;
            color: white;
        }
        .card-title {
            font-size: 1.25rem;
            margin-top: 1rem;
        }
        .card-img-top {
            transition: transform 0.3s ease;
        }

        .card-img-top:hover {
            transform: scale(1.1);
        }
        .btn-custom {
            background-color: #FCD21D;
            color: #1B3D70;
            border: none;
        }
        .btn-custom:hover {
            background-color: #e6b800;
        }
        h2{
            font-family: "Faustina", serif;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
        }


ul.nav{
    li a{
        color: white;

        &:hover{
            color: #FCD21D;
        }
    }
}

.nav-pills .nav-link.active{
    background-color: #FCD21D;
    color: #1B3D70;
    font-weight: bold;
    border-radius: 0;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(27, 61, 112, 0.8); /* 50% zwarte overlay */
    z-index: -1;
    min-height: 100%;
    position: fixed;
}

.btn-primary{
    background-color: #FCD21D;
    border-radius: 0;
    border: #FCD21D;
    color: #1B3D70;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 12px 8px 12px;

    &:hover{
        background-color: rgba(252,210,29, .8);
        color: #1B3D70;
        text-decoration: none;
    }
}

.header-container{
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Faustina", serif;
}

.text-container{
    margin-top: 5rem;
}

.project-container{
    margin-top: 5rem;

    h2{
        font-size: 2.5rem;
    }


    .parent {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 12px;
        grid-row-gap: 12px;

        img{
            width: 100%;
                height: 100%;
                object-fit: cover;
        }
    }

    .div1 { grid-area: 1 / 1 / 2 / 5; }
    .div2 { grid-area: 2 / 1 / 3 / 3; }
    .div3 { grid-area: 2 / 3 / 3 / 5; }
    .div4 { grid-area: 1 / 5 / 3 / 6; }

}

.logo-footer{
    width: 150px;
}

footer{
    margin-top: 10rem;
}


@media only screen and (max-width: 425px) {
    .text-container{
        margin-top: 10rem;
    }

    .logo{
        width: 150px;
    }

    ul.nav{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .text-container{
        margin-top: 12rem;
    }
}