@import url('https://fonts.googleapis.com/css2?family=Roboto: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;
    background-position: center center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    place-content: center;
    place-items: center;
    transition: 200ms ease;
}

body::before {
    background-color: #000a;
    content: "";
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.slider-container {
    border-radius: 6px;
    box-shadow: 0 3px 6px #0002,
                0 3px 6px #0004;
    height: 70vh;
    overflow: hidden;
    position: relative;
    width: 70vw;
}

.slide {
    background-position: center center;
    background-size: cover;
    height: 100vh;
    left: -15vh;
    opacity: 0;
    position: absolute;
    top: -15vh;
    transition: 200ms ease;
    width: 100vw;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.arrow {
    background-color: #000a;
    border-color: #aaa;
    border-radius: 5px;
    border-style: solid;
    border-width: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    padding: 20px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}

.arrow:focus {
    outline: none;
}

.left-arrow {
    left: calc(15vw - 65px);
}

.right-arrow {
    right: calc(15vw - 65px);
}
