/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


@font-face{
    font-family: "Itim";
    src: url("/fonts/Itim-Regular.ttf")
        format("truetype");
}
@font-face {
  font-family: 'Fraunces';
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/Fraunces--latin_basic.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f9e8d6;  
    font-size: 100%;
}

hr {
	height: 2px;
	border-style:solid;
	border-width: 1px;
	border-color: #9C5106;
	border-radius: 3px;
	width: 80%;
}

.row {
    max-width: 70%;
    max-height: 100%;
    margin: auto;  
} 

.row::after {
  content: "";
  display: table;
  clear: both;
}

p, summary { 
    max-width: 70%;
    margin: auto;  
    text-align: center;
     
}
p, li, a, button, summary, span {
    font-family: Arial, sans-serif ;
    color: #9C5106;
    font-size: small;
}

  h1, h2, h3, h4, h5, h6 {
    color: saddlebrown;
      text-align: center;
      font-family: 'Fraunces';
       
    }
.centregroup {
	display: block;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}

.responsive-iframe {
    position: relative;
    display: block;
    padding-bottom: 57.7%;
    height: 0;
    overflow: hidden;
}

.responsive-iframe iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1.0;
    transition: opacity 7s;
}

.responsive-iframe img {
    display: none;
    opacity: 0.0;
    transition: opacity 7s;
}

.topbuffer{
    height: calc((100vh - 40.61vw)/2);
}

@media screen and (max-width: 1000xp) {
        .row {
            max-width: 100%;
    }
}

@media screen and (max-width: 500px) and (max-height: 500px) {
    
    .topbuffer{
        height: 0;
    }
    
    .responsive-iframe {
        height: initial;
        padding-bottom: initial;
        opacity: 1.0;
    }
    
    .responsive-iframe iframe{
        display: none;
        opacity: 0.0;
        transition: opacity 6s;
    }
    
    .responsive-iframe img{
        display: block;
        object-fit: contain;
        opacity: 1.0;
    }
    

}