/*FONTS*/
@font-face {
    font-family: 'Figtree';
    src: url('Figtree-LightItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('Figtree-Regular.ttf') format('truetype');
    font-style: normal; 
    font-weight: 400; 
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('Figtree-Black.ttf') format('truetype');
    font-style: normal; 
    font-weight: 900; 
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('Figtree-Bold.ttf') format('truetype');
    font-style: normal; 
    font-weight: 700; 
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('Figtree-Italic.ttf') format('truetype');
    font-style: italic; 
    font-weight: 400; 
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('Figtree-Light.ttf') format('truetype');
    font-style: normal; 
    font-weight: 300; 
    font-display: swap;
}

/*ELEMENT STYLES*/
body {
  background-color: white;
  max-width: 40em;
  margin: 0 auto;
  padding: 24px;
  font-family: Figtree, sans-serif;
  font-style: light;
  font-size: 18px;
  line-height: 1.6em;
  color: #666666;
}
h1, h2, h3 {
  font-family: Figtree, Serif;
  font-weight: bold;
  color: #222222;
}
h1 {
  color: #5670D6;
}
h6 {
  font-size: xx-small;
  font-weight: bold;
}

hr{
  border: 0;
  border-bottom: 0.1rem solid #4F71DD;
  margin: 1em 0;
}
a {
  font-family: Figtree, Serif;
  font-weight: 700;
  text-decoration: none;
  color: #5670D6;
}
a:hover{
  text-decoration: underline;
}
.center {
  text-align: center;
}
.quote {
  font-size: huge;
  color: #5670D6;
}
.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 1920px;  
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#footer {
  margin-top: 5.5em;
  margin-bottom: 4.5em;
  font-size: 1.1em;
}
#footer a {
  margin-right: 20px;
}
#footer a:last-child {
  margin-right: 0;
}