body{
    background-color: red;
    
}

.container{

    width: 70%;
    height: 100vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; 
}

#prev{
    position: absolute;
    color: white;
    background-color: black;
    top: 43%;
    left: 0;
    cursor: pointer;
    padding: 16px;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

#next{
    position: absolute;
    color: white;
    background-color: black;
    top: 43%;
    right: 0;
    cursor: pointer;
    padding: 16px;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


#prev:hover, #next:hover{
    background-color: rgba(0, 0, 0, 0.5);
}

.image{
    display: none ;
}

.dots{
    text-align: center;
    margin: 2%;
}
.dot{
    height: 15px;
    width: 15px;
    background-color: #bbb;
    display: inline-block;
    border-radius: 50%;
    margin: 0 2px;
    transition: background-color 0.6s ease;
}
.active{
    background-color: #717171;
}

.fade{
    animation: fade 1.5s;
}

@keyframes fade{
    from {opacity: .4}
    to {opacity: 1}
}

@media (max-width: 768px) {
    .container{
        width: 100%;
    }
    
}

