body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:rgba(77, 117, 247, 0.911);
    margin: 0;
}

.title {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 34px;
    margin-bottom: 20px;
}

.keyboard-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 80px;
    background-color: #000000;
    border-radius: 50px;
    box-shadow: 0px 20px 90px rgba(137, 4, 214, 0.733);
    border: 12px solid #3cca53;
}

.keyboard-layout.active {
    display:contents;
}

.row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.key {
    width: 75px;
    height: 75px;
    font-size: 15px;
    color: #ffffff;
    border: 2px solid #3a3a3a;
    background-color: #1e1e1e;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    box-shadow: 3px 3px 5px rgba(255, 255, 255, 0.308);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.key:active {
    background-color: #0b67a5;
    border-color: #555;
}

p{
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 30px;
    margin-top: 20px;
    font-style: underline;
    text-align: center;
}


p:hover {
    background-color: #1e2020; /* Slightly darker background on hover */
}