* {
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(#4b4bc6, #d31dbe);
    font-family: sans-serif;
    min-height: calc(100vh - 20px);
    margin: 0;
}

.bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 60px;
    grid-gap: 20px;
    border: 1px solid #000;
    padding: 10px;
    box-shadow: 0 0 2px #000;
    border-radius: 5px;
    margin: 20px;
    z-index: 10;
    position: relative;
    background-image: linear-gradient(45deg, rgb(140, 64, 190),rgb(56, 195, 193));
}

.cBar,
.lwBar {
    display: flex;
    align-items: center;
    height: 60px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px 30px;
    gap: 20px;
}

.inp_color {
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.5s;
    padding: 0 5px;
    box-shadow: 0 0 5px #000;
    min-width: 25px;
    max-width: 350px;
}

.inp_color:hover {
    border-color: #000;
    border-radius: 5px;
    box-shadow: none;
}

.btn {
    font-size: 20px;
    padding: 5px 12px;
    border: none;
    border-bottom: 1px solid #000;
    box-shadow: 0 0 5px #000;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: #e4e4e4;
    text-shadow: 2px 2px 2px #000;
    transition: 0.5s;
}

.btn_fill {
    margin-left: auto;
}

.btn:hover {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: none;
    border-bottom-color: transparent;
    text-shadow: 0px 0px 2px #e4e4e4;
}

.lineW {
    width: 100%;
    min-width: 100px;
    max-width: 350px;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 0 4px #000 inset;
    border-radius: 15px;
}

.lineWvalue {
    font-size: 20px;
    font-family: sans-serif;
    text-shadow: 2px 2px 2px #000;
    color: #fff;
    padding: 5px 15px;
    border: 1px solid #000;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    min-width: 65px;
    text-align: center;
}

.cvs {
    background-color: #fff;
    display: block;
   /* margin: 25px;
    border-radius: 30px;
     width: calc(100vw - 50px);
    height: calc(100vh - 150px); */

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.status {
    font-family: "Condiment", cursive;
    position: fixed;
    bottom: 5px;
    left: 5px;
    font-size: 30px;
    text-shadow: 2px 2px 2px #fff;
    color: #000;
    box-shadow: 0 0 15px #fff;
    border-radius: 15px;
    padding: 0 10px;
    background-image: linear-gradient(rgba(0, 217, 255, 0.484), rgba(150, 76, 150, 0.484));
}

@media all and (max-width: 750px) {
    body {
        min-height: calc(100vh - 2px);
    }

    .bar {
        grid-template-columns: 1fr;
        margin: 2px;
    }

    /* .cvs {
        height: calc(100vh - 230px);
    } */
}