*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    gap: 1rem;
}

.form{
    padding: 1rem 5.5rem; 
}

.additems{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.add{
    font-size: 5rem;
    --ionicon-stroke-width: 16px;
    stroke: #000;
}

.wrapper{
    display: flex;
    gap: 1rem;
    max-width: 250px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x;
    cursor: grab;
    scroll-behavior: smooth;
}

.wrapper::-webkit-scrollbar{
    display: none;
}

.slider{
    min-width: calc(50% - .5rem);
    aspect-ratio: 1/1;
    height: 100px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem; 
    scroll-snap-align: start;
    font-weight: 600;
    user-select: none;
}

.image{
    border: 1px solid #222;
    border-radius: 20px;
    padding: 4rem 9rem;
    align-items: center;
}

.buttons{
    display: flex;
    justify-content: space-between;
    width: 90%;
}

.buttons .btn{
    padding: 20px 35px;
    border: none;
    border-radius: 20px;
    background: #4285F4;
    color: #fff;
    text-decoration: none;
}