html, body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: parkinsans;
    line-height: 1.4;
    font-family: "Parkinsans", sans-serif;
}

/* Alles header */
header{
    display: flex;
    justify-content: space-between;
}

header img{
    max-width: 100%;
    height: 80px;
}

.logo{
    display: none;

    @media (min-width: 678px) {
        display: block;
        max-width: 200px;
    }
}

.logo-small{
    display: flex;
    margin-left: 10px;
    margin-top: 10px;

    @media (min-width: 678px) {
        display: none;
    }
}

.create-your-list{
    display: none;

    @media (min-width: 1024px) {
        display: block;
    }
}

.create-your-list-small{
    display: flex;

    @media (min-width: 678px) {
        display: none;
    }
}

.icons{
    display: flex;
    margin-top: 10px;
    max-height: 100px;
}
/* -----header----- */
main{
    background-color: #F6F5F5;
    border-top: 5px #E0B000 solid;
    position: relative;
    margin-top: 3em;
}
.background-grid{
    display: flex;
    background-color: #F6F5F5;
}

.dropdown{
    text-align: center;
}

.tie{
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);

    @media (min-width: 678px) {
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.tie svg{
    height: 50px;

    @media (min-width: 678px) {
        height: 100%;
    }
}

/* gecopieerd van website---------------------------------------------------------- */
/* Dropdown Button */
.filtra {
  background-color: #F6F5F5;
  color: #212121;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.filtra:hover, .filtra:focus {
  background-color: #F6F5F5;
}

/* The container <div> - needed to position the dropdown content */
.filter {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.filtra-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.filtra-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
/* ---------------------------------------------------------------------------------- */

.users{
    display: none;

    @media (min-width: 678px) {
        display: block;
    }
}

.background-grid{
    display: grid;
    grid-template-rows: repeat(1fr);
}

.quote{
    position: absolute;
    padding: 10em;
    text-align: center;
}

.product-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
    margin-inline: 10px;

    @media (min-width: 678px) {
    grid-template-columns: repeat(2, 1fr);
    }

    @media (min-width: 1024px) {
    grid-template-columns: repeat(3, 1fr);
    }
}

.product{ 
    position: relative;
    background-color: white ;
    padding: 5px;
}

.product-grid img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.add-list{
    position: absolute;
    top: 10px;
    right: 40px;
    background: transparent;
    cursor: pointer;
    height: 50px;
    width: 50px;
    border: none;
}

.add-list img{
    height: 50px;
    width: 50px;
}

.tags{
    position: absolute;
    bottom: 93px;
    left: 10px;
    flex-wrap: wrap;
}

.tag-timeless{
    background: #B2291F;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
}

.tag-sustainable{
    background: #466EBF;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
}

.tag-experience{
    background: #AA2677;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
}

.tag-green{
    background: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
}

/* Alles van de footer */
footer{
    background-color: black;
}

.footer-gifts{
    background: #E0B000;
    color: white;
    display: block;

    @media (min-width: 1024) {
        display: flex;
    }
}

.footer-middle {
    display: block;
    color: white;

    @media (min-width: 1024px) {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr 1fr 1fr 2fr;
    }
}