@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #333;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
}
p.color{
    color: #666666;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.3;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    color: #4E2FDA;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #333;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.5rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
.flex{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0 1rem;
}
.button a {
  display: inline-block;
  background: #4E2FDA;
  padding: 0.6rem 1.5rem;
  margin: 1rem auto;
  cursor: pointer;
  border: 0.1rem solid #4E2FDA;
  transition: all 140ms ease 0s;
  -moz-transition: all 140ms ease 0s;
  -webkit-transition: all 140ms ease 0s;
  color: #fff;
  border-radius: 5px;
}
.button a:hover {
  background-color: #fff;
  text-decoration: none;
  color: #4E2FDA;
}
header{
    margin-bottom: 1rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .button, h1{
        text-align: center;
    }
    .flex{
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    h1{
        font-size: 1.5em;
    }
}