<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@font-face {
  font-display: swap;  
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v27-latin-700.eot');  
  src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),  
       url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),  
       url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),  
       url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');  
}
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #113B6E;
  font: 700 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 800px;
  height: 600px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: url('../images/bg.jpg') top left no-repeat, #949599;
  overflow: hidden;
}
h1, h2 {
  font-weight: 700;
}
h1 {
  margin: 2rem 0 7rem 1.4rem;
  font-size: 1.8em;
  line-height: 1.1em;
  color: #fff;
}
h1:before {
  content: "•";
  font-size: 0.9em;
  float: left;
  margin-left: -1.4rem;
}
h2 {
  font-size: 1.5em;
  line-height: 1.3em;
  margin-bottom: 2rem;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
}
header{
   padding: 2rem 1rem 0 23rem;
}
article {
  padding: 3rem 1rem 0 23rem;
}
article p {
  font-size: 1.3em;
  line-height: 1.3em;
}
article figure{
  display: flex;
  justify-content: center;
  margin: 2rem 1rem 0 0;

}
footer {
  position: absolute;
  top: 36px;
  left: 51px;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
footer p {
  font-size: 0.75em;
  line-height: 1.2;
}
@media only screen and (max-width:799px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  header, article {
    padding-left: 21rem;
  }
}
@media only screen and (max-width:640px) {
  #wrapper {
    height: auto;
    background-image: none;
  }
  h2 br {
    display: none;
  }
  header{
    padding: 1rem 2rem 0;
  }
  article {
    padding: 0 2rem 1rem;
  }
  h1 {
    margin: 0 0 2rem 1.4rem;
  }
   footer {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    justify-content: center;
    background: #E2AF70;
  }
}
@media only screen and (max-width:480px) {
  article {
    padding: 0 1rem 1rem;
  }
  header, footer {
    padding: 1rem;
  }
}</pre></body></html>