@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 0.875em/1.3 'Barlow', Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem 3rem;
}
p {
  padding-bottom: 1rem;
}
h1 {
  margin: 0 0 2rem;
  font-size: 1.4em;
  line-height: 1.1em;
  font-weight: 400;
}
h1 span {
  font-size: 2em;
  font-weight: 600;
}
h2 {
  color: #1E80C0;
  font-size: 1.9em;
  line-height: 1.3em;
  margin-bottom: 0.5rem;
  font-family: "Segoe UI", Arial, sans-serif;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0 0 2rem;
  list-style: none;
}
li {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  background: url('icon.jpg') top 2px left no-repeat;
}
header {
  text-align: center;
  padding-bottom: 1rem;
}
article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
figure {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.5rem 0;
}
footer, section {
  width: 44%;
}
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  h1 span {
    font-size: 1.9em;
  }
  article {
    flex-direction: column;
  }
  section, footer {
    width: 100%;
  }
}