@font-face {
    font-family: TommyBold;
    src: url('./fonts/MADE\ Tommy\ Soft\ Bold\ PERSONAL\ USE.otf');
}

@font-face {
    font-family: TommyRegular;
    src: url('./fonts/MADE\ Tommy\ Soft\ Regular\ PERSONAL\ USE.otf');
}

@font-face {
    font-family: TommyMedium;
    src: url('./fonts/MADE\ Tommy\ Soft\ Medium\ PERSONAL\ USE.otf');
}



body {
    font-family: TommyRegular, Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.header {
    display: flex;
    justify-content: center;
    .logo img {
        width: 350px;
    }
}

.divider {
    font-family: TommyBold, Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #499c39;

    color: #fff;
    font-size: 24px;
    .left_arrow,
    .right_arrow {
        /* clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%); */
        clip-path: polygon(0% 0%, 89% 0%, 100% 50%, 89% 100%, 0% 100%);
        background: #fff;
        width: 200px;
        height: 46px;
    }
    .right_arrow {
        transform: rotate(180deg);
    }
}

.content {
    text-align: center;
    margin: 20px;
    display: grid;
    justify-items: center;

}

.images {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    img {
        width: 150px;
        height: 150px;
    }
}

.openingstijden {
    font-size: 16px;
    color: #499c39;

}

.hidden {
    display: none;
}

.footer {
    display: grid;
    text-align: center;
    padding: 20px;
    color: #499c39;

    .footer1 {
        font-family: TommyBold, Arial, sans-serif;
    }
    .footer2 {
        font-family: TommyRegular, Arial, sans-serif;
    }
    .instagram {
        width: 18px;
        position: relative;
        top: 3px;
    }
}