body{
  margin:0;
  color: black;

  font-family: "carrotflower", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a{
  color: red;
}
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .image-container {
    position: relative;
    width: 80%;
  /*  max-width: 800px;*/
  /*  max-height: 80vh;*/
    height: 80vh;
   /* padding-bottom: 100%;*/
   /* border: solid 1px black;*/
  }
  
  .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .selected-image {
    z-index: 1;
  }
  
  .thumbnail-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    margin: 5px;
    object-fit: cover;
    cursor: pointer;
    border: solid 1px black;
  }
  
  .thumbnail:hover {
    opacity: 0.7;
  }
  
  .topbar{
    background-color: #F2F2F2;
    padding:1em;margin:0;
    margin-bottom:0.5em;
  }

  .prompt{
    background-color: #FFFF00;
    padding:1em; 
    margin:0.5em;
  }