@font-face {
  font-family: 'Sedan';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Sedan/Sedan-Italic.ttf) format('woff2');
}
@font-face {
  font-family: 'Sedan';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/Sedan/Sedan-Regular.ttf) format('woff2');
}

body{
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Sedan", serif;
}

.h2{
  text-align: center;
}

.brand-logo{
  margin-left: 20px;
  margin-right: 20px;
}

.brand-logo img{
  max-width: 200px;
  min-width: 200px;
}

.brand-logo-container{
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media  (max-width: 800px) {
  .brand-logo-container{
    display: flex;
    flex-direction: column;
  }
  .brand-logo:not(:first-child){
    margin-top: 30px
  }
}

.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size:1.2em;
  width: 100%;
}

.container-content{
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size:1.1em;
  font-family: "Sedan", serif;
  font-weight: 400;
  font-style: normal;
  padding: 1em 2em;
  width: calc(100% - 4em);
  max-width: calc(100% - 4em);
}

.container .tb-logo{
  max-height: 300px;
  max-width: 80%;
}

.container-content .tb-logo{
  max-height: 120px;
  max-width: 80%;
}

.content-text{
  margin-top: 20px;
  max-width: 800px;
  width: 100%;
  overflow: auto;
}

.logo-link{
  display: flex;
  justify-content: center;
}

.footer{
  font-size: 1.3em;
  margin-top: 0.5em;
  font-family: "Sedan", serif;
  font-weight: 400;
  font-style: normal;
  padding: 1em 2em;
}

@media  (max-width: 500px) {
 .footer{
   display:flex;
   flex-direction: column;
   align-items: center;
 }
  .separator{
    display: none;
  }
  a{
    margin-top:10px;
  }
  .container-content{
    padding: 1em 1em;
    width: calc(100% - 2em);
    max-width: calc(100% - 2em);
  }
}

.footer a:visited, .footer a:link{
  color: black;
}

/* Remove default purple color from visited links */
a:visited {
  color: lightseagreen; /* or any color you prefer */
  text-decoration: none;  /* Optional: removes underline from links */
}

a:link {
  color: lightseagreen;
  text-decoration: none;  /* Optional: removes underline from links */
}

.footer-separator{
  margin-top: 2em;
}
