* {
    margin: 0 auto;
    padding: 0;
    font-family: 'Yrsa', sans-serif;
}

body {
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a {
    text-decoration: none;
    color: white;
    font-size: 3rem;
}


img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}

.image {
    width: 100%;
    display: none;

}

@media (min-width: 768px) {
    .photo {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .photo {
        width: 100%;
        margin-top: 3rem;
    }
}


.fade {}

.prev {
    position: absolute;
    width: 10%;
    left: 0;
    top: 50%;
    text-align: center;
}

.next {
    position: absolute;
    top: 50%;
    right: 0%;
    text-align: center;
    width: 10%;
}