@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    font-size: 16px;
}
body {
    color: #404040;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}
img {
    max-width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    max-width: 53.125rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #57068c;
    box-shadow: 0 0 .625rem rgb(0 0 0 / 40%);
    -moz-box-shadow: 0 0 .625rem rgb(0 0 0 / 40%);
    -webkit-box-shadow: 0 0 .625rem rgb(0 0 0 / 40%);
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
    white-space: nowrap;
    font-weight: bold;
    display: inline-block;
}
h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem
}
h1 span {
    font-size: 1.5rem;
}
h2 {
    font-size: 1rem;
    border-left: solid .187rem #57068c;
    padding: 0 .5rem;
}
ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}
ul li {
    padding-left: 4.4rem
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.375em;
    line-height: 1;
}
header {
    padding: 2rem 3rem 1.5rem;
    background: #57068c;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
.aside {
    color: #fff;
    background: #8900e1;
    padding: 1rem 3rem;
    margin: 0 0 2rem;
    position: relative;
}
.aside div {
    width: 1.25rem;
    height: 1.25rem;
    border-top: transparent;
    border-left: transparent;
    border-right: solid .187rem #fff;
    border-bottom: solid .187rem #fff;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}
.section {
    padding: 0 3rem 1rem;
}
article p,
footer p {
    margin: 1rem 0;
}
article p:nth-of-type(1),
article p:nth-of-type(2),
article p:nth-of-type(3) {
    text-align: justify;
    hyphens: auto
}
footer {
    padding: 1rem 3rem;
    background: #220337;
    color: #fff;
}
footer p span {
    font-weight: bold;
    text-decoration: underline;
}
@media only screen and (max-width: 53.062rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem
    }
    article p:nth-of-type(1),
    article p:nth-of-type(2),
    article p:nth-of-type(3) {
        text-align: left;
    }
}
@media only screen and (max-width: 48rem) {
    ul li {
        padding-left: 2rem
    }
    header,
    .aside,
    footer {
        padding: 1rem;
    }
    .aside p {
        margin: 0
    }
    .section {
        padding: 0 1rem 1rem;
    }
    .aside {
        margin: 0 0 1rem;
    }
}
@media only screen and (max-width: 30rem) {
    ul li {
        line-height: 1.3
    }
    a.web {
        white-space: pre-wrap;
        display: inline
    }
    a.website {
        white-space: pre-wrap;
        display: inline
    }
}
@media only screen and (max-width: 23.437rem) {
    ul li {
        padding-left: 1.375rem
    }
}