@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "Arial", sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}

img {
  max-width: 100%;
  height: auto;
}

#wrapper {
  position: relative;
  max-width: 50rem;
  margin: 1rem auto;
  overflow: hidden;
  background: #fff;
  border: solid 0.0625rem #000;
  box-shadow: 0 0 0.9375rem 0 rgb(0 0 0 / 20%);
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

h1 {
  font-size: 2rem;
  margin: 1rem 0 2rem;
  line-height: 1.4;
}

h2 {
  background-color: #5CAE14;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.625rem 0.9375rem;
  margin: -0.9375rem -0.9375rem 0.625rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}

h3 {
  font-size: 1.125rem;
  text-align: center;
}

p {
  margin-bottom: 0.9375rem;
}

ul {
  list-style: none;
  margin: 0 0 0.625rem;
  padding: 0;
}

ul li {
  padding-left: 1.375rem;
}

ul li:before {
  content: "\►";
  float: left;
  margin-left: -1.5625rem;
  font-size: 1.375em;
  line-height: 1;
  color: #EB4B00;
}

header {
  padding: 0.9375rem 2.5rem;
}

article {
  padding: 1rem 2.5rem;
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0;
}

.flex section {
  width: 50%;
}

.flex aside {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0 0.9375rem 0 rgb(0 0 0 / 20%);
  padding: 0.9375rem;
  margin: 1rem 0;
}

footer {
  background-color: #EB4B00;
  color: #fff;
  padding: 1.25rem 2.5rem;
}

@media only screen and (max-width: 49.938rem) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }

  p,
  ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  header {
    display: flex;
    justify-content: center;
  }

  h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  article {
    padding: 0 1rem;
  }

  .flex {
    display: block;
  }

  .flex section {
    width: 100%;
  }

  footer {
    padding: 1rem 1rem 1px;
    text-align: center;
  }
}