* {
    list-style: none;
}
main {
    margin-top: 50px ;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 80vh; */
    background-color: #f4f4f4;
    
}

header {
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 2rem;
}

    .car {
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
}

       .img-wrap {
    display: flex;
    transition: transform 0.3s ease;

}
  .img-wrap img {
    width: 100%;
    height: auto;
}
        .btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
        }
        .btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }
        .prev {
            left: 10px;
        }
        .next {
            right: 10px;
        }
 @media screen and (max-width: 768px){
    main {
        height: 100%;
    }
       .car {
            /* position: relative; */
            width: 100%;
            max-width: 600px;
            overflow: hidden;
           
        }
    
 }