
/* Center website */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&display=swap');
body {
  background-color: #fdf6f1;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  justify-content: center;
  align-items: center;
}

.main {
 max-width: 1200px;
  justify-content: center; /* Horizontal centering */
  align-items: center; /* Vertical centering */
  height: 100vh; /* Center vertically within the viewport height */
}


/* Default styling for larger screens */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  display: flex;
}

ul li {
  margin: 0 15px;
}


.mobile-menu{
  display: none;
}
/* Styling for smaller screens (e.g., mobile devices) */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  .mobile-menu{
    display: block;
  }

  ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  ul li {
    margin: 10px 0;
  }

  /* Hide the navigation bar by default on smaller screens */
  nav {
    display: none;
  }

  /* Style the hamburger menu icon */
  #hamburger-icon {
    display: block;
    cursor: pointer;
  }

  /* Show the mobile menu when the hamburger icon is clicked */
  .mobile-menu {
    display: none;
  }

  #hamburger-icon.active + .mobile-menu {
    display: block;
  }
}





















  h1 {
    font-size: 50px;
    word-break: break-all;
    text-align: center;
    
  }
  
  
  .row {
    margin: 10px -16px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Add padding BETWEEN each column */
  .row,
  .row > .column {
    padding: 8px;
  }
  
  /* Create three equal columns that floats next to each other */
  .column {
    float: left;
    width: 33.33%;
    display: none; /* Hide all elements by default */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  /* Clear floats after rows */ 
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    background-color:white;
    padding: 10px;
   border-color: black;
    border-width: 0.3mm;
    border-radius: 10px;
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    box-shadow: 0px 13px 15px -15px rgba(0, 0, 0,0.5);
  }
  .content:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    transform: scale(1.10, 1.10);
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: rgb(248, 239, 239);
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: rgb(253, 185, 185);
  }
  
  .btn.active {
    background-color: #666;
    color: white;
  }

 


  /* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
  
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  #myBtnContainer{
    display: inline-flex;
    flex: 100%;
    max-width: 70%;
  }
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
}