html, body, * {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    box-sizing: border-box;
    background-color: #FFAADC;
    color: #333;
    background-size: 100% auto;
    font-family: Algerian;
}

.memes {
    position: relative;
    width: 100%;
}
button {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.next {
    background: url(/images/right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
    pointer-events: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 5vw;
    height: 5vw;
    right: 10px;
    position: absolute;
}

.prev {
    background: url(/images/left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
    pointer-events: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 5vw;
    height: 5vw;
    left: 10px;
    position: absolute;
}

.next:hover, .prev:hover {
    filter: brightness(1.5); /* Increase brightness on hover */
}

.svg-buttons {
    text-align: center;
    margin-top: 20px;
}

.svg-buttons a {
    margin: 0 20px; /* Increase spacing between buttons */
    display: inline-block;
}

.svg-buttons .svg-button {
    width: 15vw;  /* Increase the button size */
    height: 15vw; /* Increase the button size */
    transition: transform 0.3s; /* Smooth zoom on hover */
}

.svg-buttons .svg-button:hover {
    filter: brightness(1.5);
}

.top,
.bottom {
    width: 100%;
    box-sizing: border-box;
}

.bottom {
    margin-top: 20px;
    transform: translateX(20%);
    width: 100%;
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
}

.top img,
.bottom > img {
    width: 80%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slider > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}

.recpink {
background-color:#FFCAED;
}

.recpurple {
background-color:#E2C7FA;
}

.recyellow {
background-color:#FFFDE6;
}
@media only screen and (max-width: 767px) {

    .prev{
        background: url("");
        display: none;
    }

    .next {
        background: url("");
        display: none;
    }

    .svg-buttons .svg-button {
        width: 30vw;  /* Increase the button size */
        height: 30vw; /* Increase the button size */
        transition: transform 0.3s; /* Smooth zoom on hover */
    }
}
