:root {
    --orange: coral;
    --blue: cornflowerblue;
    --bg: azure;
  }
  
  /* Structure */
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg);
  }
  
  .images{
    max-width: 300px;
    max-height: 200px;
}

#crafts-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ensure even spacing between items */
}
  
#main-header{
    text-align: center;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }
}