

* {
    box-sizing: border-box;
 }

 body {
    color: black;
    background-color: whitesmoke;
    border: 4px solid orange;
    padding: 20px;
    font-family: 'Amatic SC';
}


/* Modal */
/* ===== Modal Overlay ===== */

#modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

/* Active state */
#modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal image */
#modal-img {
  max-width: 90vw;
  max-height: 90vh;

  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animate in */
#modal.active #modal-img {
  transform: scale(1);
  opacity: 1;
}


.zoom {
  transition: transform 0.99s ease;
}

.zoom:hover {
  transform: scale(1.11);
}





.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.is-visable {
    opacity: 1;
}


#landing-container {
    border: 1px solid red;
    padding: 15px;
    height: 93vh;
}

#logo {
    position: fixed;
    top: 50%;
    left: 50%;
    height: 35vh;
    transform-origin: center;
    border: 2px solid orange;
}


#title {
    width: 100%;
}

.categories-containers {
    border: 1px solid red;
    background-color: white;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: 100%;
}




#images-root {
    border: 1px solid orange;
    padding: 20px;
}

.flex {
    border: 1px solid orange;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    width: 90%;
    
}


.paintings {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}

.sculptures {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}


.glassware {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}

.tiles {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}

.murals {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}

.faux-finish {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}

.clothes {
    border: 1px solid red;
    object-fit: contain;
    max-height: 10vh;
}




   