body{
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: monospace;
    color: #fff;
}
.slider{
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.item{
    position: absolute;
    width: 200px;
    height: 320px;
    text-align: start;
    padding: 20px;
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;
    background: rgba(255,255,255, 0.06);
    border-radius: 10px;
    border-left: 1px solid rgba(255,255,255, 0.3);
    border-top: 1px solid rgba(255,255,255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 20px 20px 40px -6px rgba(0,0,0, 0.2);
}

.item::-webkit-scrollbar {
    display: none;
  }

.item h1 {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.item img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.image_wrapper {
    width: 100%;
    text-align: center;
}

#next, #prev{
    position: absolute;
    top: 25%;
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 130px;
}
#next{
    left: unset;
    right: 115px;
}