/* @ import url('https://fonts.googleapis.com/css/'); */

*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #8a6cff;
}
.wrapper {
    background: #ffff;
    width: 450px;
    padding: 25px;
    border-radius: 7px;
}
.wrapper .gradient-box{
    width: 100%;
    height: 220px;
    border-radius: 7px;
    background: linear-gradient(to left top, #977DFE, #6878FF );
}
.wrapper .row {
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
}
.row :where(.column, button) {
    width: calc(100% / 2 - 12px);
}
.options p {
    font-size: 1.12rem;
    margin: 8px;
}
.options .select-box{
    border: 1px solid #aaa;
    padding: 10px 15px;
    border-radius: 5px;

}
.select-box select {
 width: 100%;
 border: none;
 outline: none;
 font-size: 1.12rem;
 background: none;
}
.options .colors {
    margin-left: 60px;
}
.colors input {
    height: 41px;
    width: calc(100% / 2 - 20px);
}
.colors input:last-child{
    margin-left: 6px;
}
.wrapper textarea {
    width: 100%;
    color: #333;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 1.05rem;
}
.buttons button{
    color: #ffff;
    padding: 15px 0;
    border-radius: 5px;
    font-size: 1.09rem;
    cursor: pointer;
    border: none;
    outline: none; 
    margin: 0 0 -15PX;
}
.buttons .refresh{
    background: #6c757d;
}
.buttons .copy{
    background: #8a6cff;
}


@media only screen and (max-width: 600px) {
	.wrapper {
        background: #ffff;
        width: 450px;
        margin: 30px;
        padding: 25px;
        border-radius: 7px;
    }
    .select-box  select {
        width: 100%;
        border: none;
        outline: none;
        font-size: 1rem;
        background: none;
        word-wrap: break-word;
       }
       .colors input {
        height: 41px;
        width: 46px;
        align-items: center;
    }
    .wrapper textarea {
        width: 100%;
        color: #333;
        border-radius: 5px;
        padding: 10px 15px;
        border: 1px solid #ccc;
        resize: none;
        font-size: 1.05rem;
        height: 100%;
    }
}
@media only screen and (max-width: 450px) {
	.wrapper {
        background: #ffff;
        width: 450px;
        margin: 30px;
        padding: 25px;
        border-radius: 7px;
    }
    .select-box  select {
        width: 100%;
        border: none;
        outline: none;
        font-size: 1rem;
        background: none;
        word-wrap: break-word;
       }
       .colors input {
        height: 41px;
        width: 40px;
        align-items: center;
    }
}