* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
}

.slider {
    overflow: hidden;
    height: 100vh;
    width: 100%;
}
.slider_image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.slider_body {
    overflow: hidden;
}
.slider_controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}
.slider_button {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.slider_button:hover {
    background-color: rgba(255, 255, 255, 0.54);
}