* {
    padding: 0;
    margin: 0;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    background-color: #1A252F;
}

.container {
    padding-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;

}

h1 {
    letter-spacing: 3px;

}

.bg {
    width: 1180px;
    padding: 1rem 0rem;
    border-radius: 2rem;
    background-color: #343537;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
}

.keyboard {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.row {
    display: flex;
    height: 55px;
    margin-top: 5px;

}

.key {

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #5555;
    border-radius: 4px;
    margin: 2px;
    font-size: 12px;
    line-height: 1.5;
    background-color: #555555;
    transition: 100ms ease;
}

.key:hover {
    cursor: pointer;
    background-color: #ccc;
    font-size: larger;
    color: black;
}

.CapsLock {
    width: 105px;
}

.side-plus {
    height: 230px;
}

.enter,
.tab-left {
    width: 162px;
}

.shift-right,
.shift-left {
    width: 162px;
}

.space {
    width: 440px;
}

.updown {
    display: flex;
    flex-direction: column;

}

.up-arrow,
.down-arrow {
    height: 25px;

}

.zero {
    width: 165px;
}

.active {
    background-color: #3F80CC;
}