/*slide */
     * {
            margin: 0;
            padding: 0;
        }
body {
        background-color: rgb(26, 2, 47);
    color: rgb(36, 36, 35);
}
.slider {
    position: relative;
    max-width: 60%;
    margin: 50px auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    padding: 20px 50px;
    box-sizing: border-box;
    text-align: justify;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
.slide img{
 width: 100%;      /* Exemplo */
}
h1{
    color: antiquewhite;
      text-align: center;
    font-family:fantasy;
    font-size: 45px;
    font-style: italic;
    padding-top: 1%;
}
ul li{
    line-height: 1.6em;
    font-size: 21px;
}

p{
    line-height: 1.6em;
    font-size: 21px;
}
h2{
    text-align: center;
}


@media (max-width:800px){
.slider {
    max-width: 80%;
    margin: 10px auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
}
main h1{
    font-size: 25px;
}
    ul li{
    line-height: 1.6em;
    font-size: 12px;
}

p{
    line-height: 1.6em;
    font-size: 12px;
}
h2{
    font-size: 25px;
    text-align: center;
}

