@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: Calibri, "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 3.125rem
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

h1 {
    font-size: 1.062rem;
    margin: 1.375rem 0
}

h2 {
    font-size: 1rem;
    margin: 1.875rem 0 .625rem
}

ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

ul li {
    padding-left: .75rem
}

ul li:before {
    content: "-";
    float: left;
    margin-left: -.75rem;
    font-size: 1.375em;
    line-height: 0.8;
}

header {
    display: flex;
    justify-content: flex-end
}

.width{
    display: inline-block;
    width: 80px
}
.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;
    }
}

@media only screen and (max-width: 49.937rem) {
    #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
    }

    h2 {
        margin-top: 0
    }
}

@media only screen and (max-width: 31.25rem) {
    header {
        justify-content: center
    }
    .width{
        display: block
    }

   
}
