* {
    box-sizing: border-box;
}
body {
    background-color: #202020;
    background-image: url("/_r/images/bg-hex-dark.png");
    overflow: hidden;
}
/* Carousel*/
.carousel-container {
    display: flex;
    align-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 700px;
    perspective: 1000px;
    margin: 50px 0 0 0;
  }
  .carousel {
    height: 355px;
    position: fixed;
    transform: translateZ(-360px) rotateX(340deg) rotateY(0deg);
    transform-style: preserve-3d;
    transition: transform 1000ms ease-in;
    z-index: 99;
  }
  .card {
    position: absolute;
    left: -20vw;
    width: 40vw;
    max-width: 600px;
    height: 435px;
    line-height: 116px;
    font-size: 80px;
    font-weight: bold;
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 3px;
    transition: 1s;
    background: -webkit-linear-gradient(right, #f12711, #493071);
    background: linear-gradient(right, #f12711, #493071);
    box-shadow: 0 95px 90px rgb(241 39 17 / 10%);  
  }
  
  .card-content {
    background-color: #001124;
    height: 100%;
    opacity: 0.9;
    object-fit: fill;
    color: white;
    text-shadow: rgb(241 39 17 / 10%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 1.1rem;
  }
.unsplash-img-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-end;
    height: 100%;
    flex-wrap: nowrap;
}
.unsplash-img-info > p {
    margin: 0;
    padding: 10px;
    text-shadow: 0 1px 0 black;
}

.unsplash-img-location {
    
}

.slide-btn {
    position: absolute;
    width: 50%;
    height: 700px;
    /*        background: #3BD0BB;*/
    margin: auto 0;
}
.prev {
    left: 0;
}
.next {
    right: 0;
}

@media screen and (max-width: 600px) {
    .card {
        width: 80vw;
        left: 0;
    }
}

