body {
    background-color: #1f1f1f;
    color: #d3be9b;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

p {
    color: white;
    font-size: 24px;
    max-width: 666px;
    margin: 0 auto;
}

#image-container {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
}

#image-container img {
    max-width: 100%;
    max-height: 100%;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

.meme-container {
    padding: 20px;
}

.button-container button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    position: absolute;
    /*top: 20px;*/
    width: 250px;
    height: 150px;
    margin: 0;
    padding: 16px;
    color: black;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s,
        transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    box-shadow: 3px 3px 2px 0px rgba(128, 0, 0, 1),
        0px 0px 19px 7px rgba(111, 82, 118, 1);
}

/* Position the "previous button" to the left */
.prev {
    left: 20px;
}

/* Position the "next button" to the right */
.next {
    right: 20px;
}

/* On hover, add a black background color */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    /* added color change */
}

/* On mobile, hide the buttons */
@media screen and (max-width: 600px) {

    .prev,
    .next {
        display: none;
    }
}
