/* **********************************************************
 * 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=Inconsolata:wght@200..900&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');



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

.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;
}

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;
  }; */


  


/* **********************************************************
 * 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;
  } 



  .slideshow-container {
    width: 300px;
    position: relative;
  }
  
  .slides {
    display: flex;
    width: 1500px; /* 500px * 3 slides */
    transition: transform 0.5s ease;
  }
  
  .slide {
    width: 300px;
    flex-shrink: 0;
  }
  
  .slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  
  input[type="radio"] {
    display: none;
  }
  
  #slide1:checked ~ .slides {
    transform: translateX(0);
  }
  #slide2:checked ~ .slides {
    transform: translateX(-100px);
  }
  #slide3:checked ~ .slides {
    transform: translateX(-200px);
  }
  #slide4:checked ~ .slides {
    transform: translateX(-300px);
  }
  #slide5:checked ~ .slides {
    transform: translateX(-400px);
  }
  #slide6:checked ~ .slides {
    transform: translateX(-500px);
  }
    
  
  .navigation {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  
  .bar {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }





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