:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
    url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot');
  src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
    url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
    url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
    url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  color: #fff;
  font-weight: 400;
}

#wrapper {
  position: relative;
  max-width: 800px;
  margin: 16px auto;
  border: 1px solid #000;
  padding: 16px;
  overflow: hidden;
  background: #fff url('../images/background.jpg') no-repeat center center;
}

h1 {
  margin: 72px 0 72px 44px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}

h1 strong {
  display: block;
  padding-left: 18px;
  margin-top: 8px;
}

h1 strong:before {
  content: "\2022";
  color: #fff;
  float: left;
  margin-top: -1px;
  font-size: 20px;
  line-height: 1em;
  text-indent: -12px;
}

h2 {
  margin: 16px 0;
  font-size: 48px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background: url('../images/slogan.png') no-repeat center;
  font-style: italic;
}

h2 strong {
  opacity: 0;
}

h3 {
  text-align: right;
  font-size: 14px;
  line-height: 1.3;
  margin-right: 133px;
}

h3 strong {
  font-size: 48px;
  line-height: 1;
  color: #F37428;
  font-style: italic;
}

p:not(:last-of-type) {
  margin-bottom: 16px;
}

.link {
  position: absolute;
  top: 9px;
  right: 16px;
  color: #F37428;
  font-size: 13px;
  line-height: 1;
}

header {
  margin: 0;
  padding: 0;
}

article {
  margin: 0;
  padding: 0;
}

footer {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

@media all and (max-width:800px) {
  #wrapper {
    margin: 0;
    padding: 16px;
    border: none;
    background-size: cover;
  }

  h2 {
    font-size: 6.75vw;
  }
}

@media all and (max-width:740px) {
  h2 {
    background-size: 100%;
  }

  h1 {
    margin: 32px 0 32px 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }

  h3 strong {
    font-size: 6vw;
  }
}

@media all and (max-width:460px) {
  h2 {
    font-size: 6.5vw;
  }

  footer {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  h3 {
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    margin-right: 0;
  }
}

@media all and (max-width:400px) {
  h2 {
    font-size: 6.5vw;
  }
}