body {
    background-image: url('/images/background.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

body.scrollable {
    background-image: url('/images/background-repeat.png');
    background-repeat: repeat;
}

article {
    columns: 4;
}

.login {
    position: absolute;
    width: 48px;
    right: 12px;
}


.login-twitch-btn {
    background-color: #3b3b3b; /* Twitch purple */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: absolute;
    right: 12px;
}

.login-twitch-btn:hover {
    background-color: #7a39b1; /* Slightly darker shade on hover */
}

/* Styling for the Twitch logo */
.twitch-logo {
    width: 20px;
    height: 20px;
}

.center_title {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1%;
    width: 25%;
}

section {
    margin-bottom: 15px;
}

.container img {
    width: 100%;
    box-shadow: 0px 0px 5px 0px #151515;
}

.container {
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
}

.container:hover .overlay {
    opacity: 1;
}

/* The actual popup (appears on top) */
.popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #121212;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 50%;
    left: 50%;
    margin-left: -80px;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    height: 80%;
}


/* Add Animation */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.copy-button {
    background-color: #121212;
    width: 1.2vw;
    height: 1.2vw;
    position: absolute;
    right: 1%;
    top: 1%;
    padding: 0.5%;
    border: 2px solid #121212;
    border-radius: 10%;
    cursor: pointer;
}

.image-checkbox {
    background-color: #121212;
    width: 1.2vw;
    height: 1.2vw;
    position: absolute;
    left: 1%;
    top: 1%;
    padding: 0.5%;
    border: 2px solid #121212;
    border-radius: 10%;
    cursor: pointer;
}

.a-left {
    padding-left: 22%;
    padding-right: 10%;
}

.a-right {
    padding-left: 10%;
    padding-right: 22%;
}


button {
    width: 18%;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
}

.btn_img {
    width: 100%;
}