/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Sono&display=swap');


    /* General Stuff*/
    :root {
        --primary: #151515;
        --primary-hover: #202020;
        --font: "Sono", sans-serif;
        --background: #151515;
        --background-textarea: #101010;
        --textarea-border: #ffe135;
        --text-color: #ffffff;
        --text-color-hover: #444444;
        --darkmode-button-image: url("/assets/svg/dark_mode.svg");
    }

    body {
        background-color: var(--background);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 100vh;
        gap: 1rem;  
    }

    * {
        margin: 0;
        border: 0;
        padding: 0;
        transition: 0.2s;
    }



    /* Body Style */

    .wrapper {
        color: #202020;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .wrapper form .center {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .wrapper form textarea {
                font-family: 'Sono';
                background-color: #101010;
                color: #ffffff;
                resize: none;
                width: 1000px;
                height: 500px;
                margin: 25px 0px 25px 0px;
                padding: 15px;
                border-color: var(--textarea-border);
                border-radius: 10px;
                border-width: 2px;
                border-style: solid;
            }

                .wrapper form textarea:focus {
                    outline: 0;
                }

           /*Buttons*/

      .wrapper .button {
            background-color: #141414;
            border: 2px solid #ffe135;
            font-weight: 600;
            font-family: "Sono";
            border-radius: 50px;
            display: flex;
            cursor: pointer;
            height: 45px;
            width: 130px;
            color: White;
            opacity: 1;
            text-align: center;
           justify-content: center;
           align-items: center;
        } 


            .wrapper .button:hover {
                background-color: var(--primary-hover);
            }




/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 100px;
        border-style: solid;
        border-color: transparent;
        background: var(--primary);
    }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-hover);
        }

    .wrapper form textarea::-webkit-scrollbar {
        width: 8px;
    }

    .wrapper form textarea::-webkit-scrollbar-track {
        margin: 15px 0px 15px 0px;
        background: transparent;
    }

    .wrapper form textarea::-webkit-scrollbar-thumb {
        border-radius: 100px;
        border-style: solid;
        border-color: transparent;
        background: var(--primary);
    }

        .wrapper form textarea::-webkit-scrollbar-thumb:hover {
            background: var(--primary-hover);
        }

    .banners {
        width: 500px;
        display: grid;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 10px;
    }

/*line under header*/
.underline {
    position: relative; /* display:inline-block; */
    width: 100% ;
}

    .underline::after {
        content: "";
        height: 2px;
        bottom: -1px;
        position: absolute;
        left: 0%;
        width: 100%;
        background: #ffe135;
    }

@media screen and (max-width:450px) {
    .underline::after {
        content: "";
        width: 110%
    }
}

.primary-button {
    background-color: #151515;
    border: 2px solid #ffe135;
    padding: 12px 24px;
	font-family: sono;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    transition: all ease-in-out .3s;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 45px;
    width: 130px;
}

.primary-button:hover {
    background-color: #202020;
}

.primary-button.enabled {
    background-color: rgb(15 ,15, 15);
}



input {
    /* width: 0; */
    border: none;
    outline: none;
    padding: 0 10px;
    background: none;
    font-size: 1.1rem;
    transition: 0.5s ease;
    line-height: 40px;
    color: #fff;
}

.paste-link {
    margin-top: 25px;
    cursor: pointer;
}

.paste-link input {
    background: 101010;
    font-family: sono;
	font-size: 0.85em;
    padding: 4px 16px;
    border-radius: 50px 0 0 50px;
    border: 2px solid #ffe135;
    border-right: none;
    width: 250px;
    transition: all ease-in-out 0.3s;
}

.paste-link button {
    border-radius: 0 50px 50px 0;
    background-color: #ffe135;
	font-weight: bold;
	color: white;
	align: center;
    padding: 4px 16px;
	font-family: sono;
    height: 52px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.paste-link:hover button {
    background-color: #ffe135;
}

.paste-link:hover input {
    border-color: #ffe135;
}

.paste-link.enabled input {
    border-color: rgb(66, 99, ff);
}

.paste-link.enabled button {
    background-color: rgb(66, 99, ff);
	color: white;
}
.bannermain {
    margin-top: 55px;
}

.bannerpaste {
    margin-top: 10px;
}

.extra {
    display: flex;
    gap: .5rem;
}

@media screen and (max-width: 450px) {
    .extra {
        flex-direction: column;
    }
    
}