@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #e9eaea
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color:#df4f08;
    font-weight: 700;
    text-decoration: underline;
}

h1 {
    font-size: 2rem;
    color: #df4f08;
    margin: 2rem 0;
}

h2 {
    font-size: 1rem;
    color: #df4f08;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 3rem;
}

ul li::marker {
    color: #df4f08;
}

span {
       color: #df4f08;
}

hr {
    width: 25rem;
    border: none;
    height: 1px;
    background-color:#000;
    margin: 1rem 0 1rem 2rem;
}

header {
    display: flex;
    justify-content: right;
    padding: 1rem;
}

article {
    padding: 1rem 2rem;
}

.images {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer {
  padding: 1rem 2rem;
  background-color:#96d6e1;
}

@keyframes slidy { 
    0% { 
        left: 0%;
    }
    30% {
        left: 0%;
    }
    33% { 
        left: -100%;
    }
    64% {
        left: -100%;
    }
    67% { 
        left: -200%;
    }
    97% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
  
.slider {
    overflow: hidden;
}
  
.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}
  
figure img {
    width: 25%;
    float: left;
}

@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;
    }
}


@media only screen and (max-width: 40rem) {
    header {
        padding: 1rem;
    }
    
    article {
        padding: 1rem;
    }
    
    footer {
        padding: 1rem;
    }

    ul {
    margin: 0 0 1rem 1rem;
}

}

