@font-face {
    font-family: 'gyst-regular';
    src: url('../fonts/gyst-regular.woff2') format('woff2');
}


body {
  font-family: 'gyst-regular', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column; 
  min-height: 100vh;
}

.main-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;           
  justify-content: center;
  align-items: flex-start;  
  align-content: flex-start;
  padding: 20px;
  gap: 15px;                 
}

.main-content img {

  width: calc(20% - 20px); 
  min-width: 150px;          


  height: auto; 
  object-fit: contain;
  display: block;  

  /* The Border */
  border: 2px solid black;   
  box-sizing: border-box; 
}

#drawing-modal {
    border: none;
    background: transparent;
    padding: 0;
}

#drawing-modal::backdrop {
    background: rgba(0, 0, 0, 0.85); 
}

#modal-img {

    width: 90vw;  
    max-width: 800px;  
    height: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    display: block;
    margin: auto;
}