* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: sans-serif;
    font-size: 1.6rem;
}

button {
    outline: none;
    border: transparent;
    user-select: none;
    cursor: pointer;
    background: transparent;
}

button,
textarea,
select,
input {
    font-family: inherit;
    font-size: inherit;
}

.slidezy-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slidezy-track {
    display: flex;
    align-items: center;
}

.slidezy-slide {
    flex: 0 0 auto;
}

.slidezy-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.slidezy-dot {
    width: 30px;
    height: 10px;
    border-radius: 10px;
    background: #eaeaea;
}

.slidezy-dot.active {
    width: 50px;
    background: #ccc;
}

.my-controls {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.slide-pre,
.slide-next {
    width: 100px;
    height: 50px;
    background: rgba(192, 120, 89);
    border-radius: 20px;

    color: #fff;
    font-size: 1.6rem;
}
