*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.container{
    display: flex;
   transition: all 700ms;
}
.container div{
    min-width: 100vw;
    height: 100vh;
}
img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
 .navigation{
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
    width: 100%;
   justify-content: center;
}
.navigation div{
    width: 100px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
.navigation div.active{
    background: white;
    transition: all 700ms;
} 






