.sidebar {
    width: 220px;
    height: 100vh;
    background: rgba(58, 134, 255, 0.95);
    position: fixed;
    top: 0;
    left: -220px;   /* hidden */
    transition: 0.3s ease;
    padding-top: 60px;
}

/* Sidebar visible */
.sidebar.open {
    left: 0;
}

/* Menu button */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 28px;
    background: #ffbe0b;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1000;
}

/* Nav items */
.nav-items {
    list-style: none;
    padding: 20px;
}

/* Nav links */
.nav-link {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(236, 212, 225);

}

.card{
    background: rgb(218, 119, 195);
    align-items: center;
    padding: 30px;
    box-shadow: 0 5px 10px red ;
    margin: 20px;
    border-radius: 20px;
    width: 200px;
    height: 400px;


}
.letter{
    font-size: 80px;
    color: rgb(98, 0, 255);
    margin: 0;
    text-align: center;
    background-color: #dde1e6;
    width: 200px;
    height:200px;

    
    
    border-radius:5px;

}

button{
    font-size: 20px;
    background-color: #ff0b0b;
    color: black;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    
}
button:hover{
    background-color: rgb(255, 0, 123);
    color: black;
}

#word{
    font-size: 25px;
    color: blue;
}