.keys-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

body {
    font-family: sans-serif;
}

#controlsModal {
    display: none;
    z-index: 1000;
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 20px;
    height: 460px;
    width: 750px;
    border: 1px solid #f5f2f2;
    box-shadow: 0px 2px 4px 1px rgb(193 192 192);
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -230px;
    margin-left: -375px;
    box-sizing: border-box;
}

.keys-row {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

#mouseIcon {
    border: 1px solid #b7b7b7;
    display: flex;
    background-color: #dfdfdf;
    box-shadow: 0px 2px 3px 0px rgb(181 181 181);
    border-radius: 60px 60px 45px 45px;
    height: 200px;
    width: 130px;
    position: relative;
    margin: auto;
    margin-bottom: 5px;
}

#scrollBtn {
    position: absolute;
    height: 40px;
    background: #737373;
    width: 14px;
    left: 50%;
    margin-left: -7px;
    top: 30px;
    border-radius: 13px;
}

.mouse-btn {
    height: 80px;
    flex-grow: 1;
    border-bottom: 2px solid #b7b7b7;
}

.mouse-btn:first-child {
    border-right: 2px solid #b7b7b7;
}

.key {
    margin: 5px;
    border: 1px solid #b7b7b7;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dfdfdf;
    box-shadow: 0px 2px 3px 0px rgb(181 181 181);
    font-size: 19px;
    color: #737373;
    border-radius: 5px;
}

.content {
    position: relative;
}

#closeBtn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #5b5b5b;
    cursor: pointer;
}

.description {
    font-size: 23px;
    display: flex;
    align-items: center;
    padding: 5px;
    justify-content: center;
    color: #5b5b5b;
}

.row {
    position: absolute;
}

.awsd-row {
    left: 40px;
    top: 60px;
}

.spacebar-row {
    left: 420px;
    top: 300px;
}

.arrows-row {
    left: 40px;
    top: 240px;
}

.mouse-row {
    top: 10px;
    left: 480px;
}

.text-key {
    width: 60px;
    height: 50px;
}

.arrow-key {
    width: 60px;
    height: 30px;
}

.space-key {
    width: 240px;
    height: 50px;
}