/* **********************************************************
 * add custom styles after imports below
 * ********************************************************** */

@import "default.css";
@import "layout.css";
@import "menu.css";
@import "queries.css";

/* **********************************************************
 * to import a font, use the @import option, you can find
 * lots of font options at fonts.google.com for example.
 * ********************************************************** */


 @import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&family=Oxygen:wght@300;400;700&display=swap');


/*
.oxygen-light {
    font-family: "Oxygen", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .oxygen-regular {
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .oxygen-bold {
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-style: normal;
  } */


.handjet {
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "ELGR" 1,
    "ELSH" 2;
}

.syne-mono-regular {
  font-family: "Syne Mono", serif;
  font-weight: 400;
  font-style: normal;
}


/* html {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "width" 100;
}; */
 

/* html {
    font-family: 'Questrial', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "width" 100;
}; */

/* html {
    font-family: "KoHo", sans-serif;
    font-weight: 500;
    font-style: normal;
 }; */

  /* html { 
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
      "width" 100;
  }; */

  /* html { 
  font-family: "Handjet", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "ELGR" 1,
    "ELSH" 2;
  }; */

  html { 
    font-family: "Syne Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "ELGR" 1,
      "ELSH" 2;
    };
  


  


/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */

* {
    line-height: 115%;
    font-weight: 400;
}

body {
    background-color: var(--color-bg);
    color: var(--color-fg);
}

div {
    padding-top: 0px;
    padding-right: 33px;
    padding-bottom: 0px;
    padding-left: 33px;
  }

  figure {
   /* border: 1px gainsboro solid; */
    padding: 4px;
    margin: auto;
  }
  
  figcaption {
    /* background-color: rosybrown; */
    color: lavender;
    font-style: italic;
    padding: 2px;
    text-align: center;
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  div.a {
    text-indent: 50px;
  }


  #lightbox{
    position:fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display:flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
  }

  #lightbox img{
    margin: auto;
    width: auto;
    height: 90%;
    object-fit: cover;
    box-shadow: 2rem 2 rem 4 rem rgba(0,0,0,0.5);
    opacity:1;
  } 
  




@media (orientation: portrait) {
    * {
        font-size: 16px;
    }
}
