﻿.slider {
    display: flex;
    align-items: center;
    overflow: hidden;
    /*border-radius: 1em;*/
    width: 1000px;
    height: 99vh;
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
}

.img-container {
    display: flex;
    transition: transform 300ms ease-in-out;
}
    .img-container img {
        width: 1000px;
        height: 90% !important;
    }

.fa-solid {
    cursor: pointer;
    color: white;
    position: absolute;
    opacity: 0.75;
    transition: opacity 300ms ease-in-out;
    z-index: 100;
}

    .fa-solid:hover {
        opacity: 1;
    }

.previous {
    left: 4.5rem;
}

.next {
    right: 4.5rem;
}
