/* poppins-200 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 200;
    src: local(''),
         url('../fonts/poppins-v20-latin/poppins-v20-latin-200.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../fonts/poppins-v20-latin/poppins-v20-latin-200.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* poppins-700 - latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('../fonts/poppins-v20-latin/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('../fonts/poppins-v20-latin/poppins-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  html {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.4;
    scroll-behavior: smooth;
  }
  body {
    background-color: whitesmoke;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  h1 {
    font-weight: 700;
    text-transform: lowercase;
    margin: 0;
  }
  h2 {
    font-weight: 200;
    text-transform: uppercase;
    margin: 0;
  }
  h3{
    font-weight: 200;
    font-size: 8pt;
    margin-top: 48pt;
    color: turquoise;
    letter-spacing: 2pt;
    text-transform: uppercase;
  }
  section {
  margin: 2em 0;
  display: grid;
    place-items: center;
    width: 100%;
  }
  footer {
  margin: 4em 0;
  }
  address {
  font-style: normal;
  }
  a {
  color: black;}
  section img {
      box-shadow: 0 0 0.5em 0 rgb(0 0 0 / 30%);
    }
  @media screen and (orientation:portrait) {
    h1 {
      margin-top: 20vh;
      font-size: 64pt;
      text-shadow: 0px -10px 64px turquoise;
    }
    h2 {
      font-size: 8pt;
      letter-spacing:4pt;
    }
    section:first-child {
    margin-top: 0;
    }
  }
  @media screen and (orientation:landscape) {
    h1 {
      font-size: 100pt;
      text-shadow: 0px -15px 100px turquoise;
    }
    h2 {
      font-size: 10pt;
      letter-spacing:5pt;
    }
  }