* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(255, 0, 0, 1) 100%, rgba(0, 212, 255, 1) 100%);
    height: 100%;
}

.container {
    width: 1280px;
    height: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.input {
    border-radius: 10px;
    padding: 10px;
    width: 1150px;
    height: 200px;
    resize: none;
    outline: none;
    border: 2px red solid;
    border-radius: 5px;
    box-shadow: rgb(0, 0, 0);
    font-size: 30px;
    color: rgb(255, 118, 118);
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(255, 0, 0, 1) 100%, rgba(0, 212, 255, 1) 100%);
}

.keyboard {
    display: flex;
    flex-wrap: wrap;
    row-gap: 7px;
    width: 90%;
    background-color: #000;
    border-radius: 10px;
    padding: 10px;
}

.row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.key {
    display: flex;
    color: #ff0000;
    justify-content: center;
    border: 2px red solid;
    align-items: center;
    width: 65px;
    height: 65px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.1s;
}

.key:hover {
    transform: scale(1.05, 1.05);
}

.key:active {
    transform: scale(0.95, 0.95);
    background-color: #ff0202;
    color: azure;
}

.key:focus {
    outline: none;
}

.key-active {
    transform: scale(0.95, 0.95);
    background-color: #ff0202;
    color: azure;
}

.tilda {
    width: 50px;
}

.key_backspace {
    width: 150px;
}

.key_tab {
    width: 95px;
}

.CapsLock {
    position: relative;
    width: 110px;
}

.key_caps::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(255, 0, 0);
}

.key_enter {
    width: 150px;
}

.key_leftshift {
    width: 145px;
}

.key_rightshift {
    width: 155px;
}

.key_leftctrl {
    width: 90px;
}

.key_space {
    width: 510px;
}

.key_lang {
    width: 80px;
}