html,
body {
  background-color: white;
}

header {
    margin-top: 2em;
    margin-left: 2em;
    color: rgb(17, 17, 17);
    text-orientation: mixed;
    display: flex;
    flex-direction: column;
    justify-content: left;
    position: fixed;
    gap: 10px;
}


/*
.catalogue {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalogue {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gridbox img {
    max-width: 100%;
     height: auto;
     border-radius: 5px;
     object-fit: cover;
}

*/


.catalogue {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 7em;
    padding-left: 3em;
    padding-right: 2em;
}

.gridbox {
    max-width: 1410px;
    display: grid;
    grid-template-columns: repeat(4, 345px);
    row-gap: 20px;
    column-gap: 10px ;
    margin-bottom: 200px;
}

.gridbox img {
    max-width: 100%;
     height: auto;
     object-fit: cover;
}

.footer {
    background-color: transparent;
    position: relative;
    bottom: 0;
    width: 100%;
    padding-bottom: 0rem;
  
  }
  
  .footer .socials  {
    text-align: center;
    padding-bottom: 25px;
    font-size:13px;
    text-align: center;
    line-height: 1.5;
    
  }
  .footer .email  {
    text-align: center;
    font-size:13px;
    text-align: center;
    line-height: 1.6;
    
  }
  
  .footer .rights  {
    text-align: center;
    padding-bottom: 25px;
    font-size:13px;
    text-align: center;
    
  }
  

@media screen and (max-width: 800px) {
    .gridbox {
        grid-template-columns:  repeat(2, 1fr);
        margin-bottom: 200px;
        column-gap: 3px;
    }

    .footer {
        position: relative;
        bottom: 0;
        width: 100%;
      
      }
}



/*

    @media(max-width:400px){
        .catalogue{
            flex-direction: column;
        }
    }

/*
img {
    max-width: 100%;
    height: auto;
}

.gridbox {
    min-width: 2;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    row-gap: 10px;
}

.catalogue {
    display: flex;
    align-items: end;
    justify-content: right;
    padding-top: 7em;
    padding-left: 3em;
    padding-right: 2em;
}


.gridbox {
    width: 800px;
    border: 1px solid #000000;
    position: relative;
}

.catalogue {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 0px;
    width: 50%;
}

.catalogue {
    margin-top: 3em;
    margin-right: 2em;
    margin-left: 8em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: end;
    row-gap: 0px;
    column-gap: 0px;
}
    
*/