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

body {
    background-color: black;
    color: white;
}

a {
    font-size: 1.5rem;
}
.rtrn {
    position: sticky;
    top: 0;
    width: 100%;
    height: 7vh;
    background-color: black;
    z-index: 33;
}

.rtrn a:link, a:active, a:visited, a:hover, a:focus {
  color: white;
  text-decoration: none;
}

.carousel {
    display: grid;
    position: relative;;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
}

.ulTra {
    display: block;
    position: fixed;
    width: 100vw;
    height: 88vh;
    top: 7vh;
    overflow: hidden;
}
.slide {
    display: flex;
    position: absolute;
    width: 100vw;
    height: 80vh;
    justify-content: center;
    align-items: center;
    top: 0;
    opacity: 0;
    /* overflow: hidden; */
    transition: 150ms opacity ease-in-out;
}

.slide[data-active] {
    opacity: 1;
    z-index: 1;
}

figure {
    position: absolute;
    height: 80vh;
    top: 0;
}
figure > img {
    max-width: 95vw;
    max-height: 80vh;
    width: auto;
    border-radius: 3%;
}

figcaption {
    display: block;
    bottom: 1vh;
    height: 1.25rem;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    font-size: 1rem;
}

.carousel > ul {
    list-style: none;
    text-align: center;
}

.carousel-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    background: none;
    background-color: rgba(0, 0, 0, .1);
    color: rgba(255, 255, 255, .75);
    font-size: 6rem;
    z-index: 2;
    border: none;
    border-radius: .25rem;
    padding: 0 .5rem .5rem .5rem;
    cursor: pointer;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, .2);
    color: rgba(255, 255, 255, 1);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.btm {
  display: flexbox;
  position: fixed;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 7vh;
  top: 95%;
  font-size: 0.75rem;
}
#sgntr {
  position: absolute;
  color: white;
  left: 95vw;
  width: 5vw;
  height: 7vh;  
  text-align: center;
  padding-top: 0.5vh;
}
#sgntr > img {
  width: 1.5vw;
}
#cpy {
  position: absolute;
  width: 90vw;
  height: 7vh;
  left: 1vw;
  bottom: 0vh;
}