@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto','Lato', sans-serif;
    transition: .2s;
}
body.active{
    background-color: #545454;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    margin: 0 10px;
}
.keyboard_wrap{
    max-width: 1008px;
    width: 100%;
    background-color: #282121;
    overflow: hidden;
    position: relative;
    order: 2;
    border-radius: 4px;
}
.row{
    display: flex;
    text-align: center;
}
.keys{
    width: 60px;
    height: 60px;
    background-color: #313030;
    border-radius: 4px;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    transition: .2s;
    z-index: 5;
    font-size: 1.2rem;
    cursor: pointer;
}
.keys:active{
    background-color: #cce7e6;
}
.keys_backspace_key{
    width: 120px;
    height: 60px;
    border-radius: 4px;
    border: none;
    background-color: #053102;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    transition: .2s;
    z-index: 5;
    cursor: pointer;
}
.tab_key{
    width: 90px;
}
.slash_key{
    width: 90px;
}
.keys_caps_lock_key{
    width: 128px;
    height: 60px;
    border-radius: 4px;
    border: none;
    background-color: #058682;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    transition: .2s;
    z-index: 5;
    position: relative;
    cursor: pointer;

}
.keys.tamazight{
    background-color: #4c0586;
}
.keys.tamazight:active{
    background-color: #058682;
}
.keys.tamazight1:active{
    background-color: #058682;
}
.keys.tamazight1{
    background-color: #220738;
}
.keys_enter_key{
    width: 120px;
    height: 60px;
    border-radius: 4px;
    border: none;
    background-color: #053102;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    transition: .2s;
    z-index: 5;
    cursor: pointer;
}
.shift_key{
    width: 124px;
    cursor: pointer;
}
.keys_space_key{
    max-width: 320px;
    width: 100%;
    height: 60px;
    border-radius: 4px;
    border: none;
    background-color: #053102;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 4px;
    transition: .2s;
    z-index: 5;
    cursor: pointer;
}
.text{
    max-width: 1008px;
    width: 100%;
    height: 90px;
    margin-bottom: 30px;
    border: none;
    outline: none;
    font-size: 26px;
    background-color: #f7f7f7;
    padding-left: 10px;
    transition: .2s;
}
.textarea{
    max-width: 1008px;
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
    resize: none;
    padding: 0;
    font-size: 1.2rem;
    outline: none;
    border-radius: .5rem;
}
textarea{
    max-width: 1008px;
    width: 100%;
    height: 300px;
    resize: none;
    padding: 0;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    outline: none;
    border-radius: .5rem;
}
.active{
    background-color: #333;
    color: #fcf7f7;
}
.remove{
    animation: keys_animation 0.5s forwards;
}
@keyframes keys_animation {
    0%{
        background-color: #333;
        color: #fff;
    }
    100%{
        background-color:#fff ;
        color: #000;
    }
}
.night_mode{
    width: 80px;
    height: 30px;
    background-color: #e6e6e6;
    border-radius: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .2s;
    position: absolute;
    left: 90%;
    top: 10px;

}
/* position: absolute; right :25px; top:25px;*/
.night_mode.active{
    background-color: #504f4f;
}
.circle_toggle{
    width: 20px;
    height: 20px;
    background-color: rgb(54, 54, 54);
    border-radius: 50px;
    position: absolute;
    left: 0;
    margin: 0 5px;
    transition: .2s;
}
.circle_toggle.active{
    left: 70%;
    background-color: #fff;
}
.keyboard_wrap.active{
    background-color: #585858;
}
.keys.keys_night{
    background-color: #3c3c3c;
    color: #fff;
}
.keys.keys_night.active{
    background-color: #fff;
    color: #333;
    transition: .2s;
}
.text{
    background-color: #3c3c3c;
}

.change_light_color{
    width: 100px;
    height: 50px;
    position: absolute;
    right: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.colors_input{
    width: 100px;
    height: 50px;
    border: none;
    outline: none;
    background-color: transparent;
}

.keyboard_lights{
    position: absolute;
    width: 100%;
    height: 100%;
}
.upper{text-transform: uppercase;}
.menu{
    display: flex;
    width: 1000px;
    height: 50px;
    background-color: #222222;
    border-radius: 5px;
    margin-bottom: 8px;
    position: relative;
}
.kopy{
    background-color: #3c3c3c;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 5px;
    cursor: pointer;
}
.vokabel{
    background-color: #093cde;
}
.cut{
    background-color: #3c3c3c;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    margin-top: 5px;
    margin-left: 5px;
    cursor: pointer;
}
.kopy:active{
    background-color: #058682;
}
.cut:active{
    background-color: #058682;
}
.colors_input1{
    width: 100px;
    height: 40px;
    border: none;
    outline: none;
    background-color: transparent;
    margin-left: 800px;
    border-radius: 3px;
    margin-bottom: 5px;
    margin-top: 5px;

}
.keys_activatable::after{
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #222222;
    border-radius: 50%;
    height: 8px;
    width: 8px;
}
.keys_active::after{
    background-color: #08ff00 ;
}
.image1{
    height: 40px;
    width: 60px;
    top: 5px;
    position: absolute;
    right: 58%;
}
.image2{
    height: 40px;
    width: 60px;
    top: 5px;
    position: absolute;
    right: 50%;
    z-index: 10;
}
.image10 {
    height: 40px;
    width: 60px;
    object-fit: cover;
}
.image20 {
    height: 40px;
    width: 60px;
    object-fit: cover;
}
