@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

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

#home {
    background-color: #000a;
    border-color: #555;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 5px 5px #000a;
    cursor: pointer;
    fill: #fff;
    height: 30px;
    right: 1rem;
    padding: 5px;
    position: fixed;
    bottom: 1rem;
    width: 30px;
    z-index: 99;
}

body {
    background-color: #222;
    color: #fff;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
}

.slider-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100vw;
}

.left-slide {
    height: 100%;
    left: 0;
    position: absolute;
    width: 35%;
    top: 0;
    transition: transform 500ms ease-in-out;
}

.left-slide > div {
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    place-content: center;
    place-items: center;
    width: 100%;
}

.left-slide h3 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: -30px;
}

.right-slide {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 500ms ease-in-out;
    width: 65%;
}

.right-slide > div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
}

button {
    background-color: #fff;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px;
}

button:hover {
    color: #222;
}

button:focus {
    outline: none;
}

.slider-container .action-buttons button {
    left: 35%;
    position: absolute;
    top: 50%;
    z-index: 69;
}

.slider-container .action-buttons .down-button {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    transform: translateX(-100%);
}

.slider-container .action-buttons .up-button {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    transform: translateY(-100%);
}