@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #54565B;
  font: 1em/1.3em "Open Sans", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #54565B;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem 2rem 1rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 1rem;
  font-size: 2em;
  line-height: 1.1em;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
}
h1, h2 span, .color {
  color: #FD4711;
}
h1, h2, strong {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}
a {
  color: #54565B;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  padding: 0 0 1rem;
  list-style: none;
}
li {
  padding-left: 1.55rem;
}
ul li:before {
  content: "»";
  float: left;
  margin: -1px 0 0 -1.3rem;
}
header {
  display: flex;
  justify-content: flex-end;
}
article p:last-of-type {
  font-size: 0.75em;
  line-height: 1.3;
  margin-top: 2rem;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 4rem;
  right: 4rem;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  p {
    text-align: left;
  }
  header {
    justify-content: center;
  }
  .hide_m {
    display: none;
  }
  footer {
    position: static;
  }
}