body {
     margin: 0;
    background: grey;
    

}
h1{color: white;}
/* главный контейнер */
#tetris {
  display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}
#tetrisleft h1{
    text-align:center;
    transform: translateX(60px);
}
/* игровая зона */
#tetrisleft {
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* правый блок (инструкция) */
#tetrisright {
    width: 250px;
    color: white;
}
.info {
    text-align: left;
    margin-left: 24px;
    font-family: Sans serif;
    font-size: 20pt;
    font-weight: 800;
    color:yellow; }
/* canvas */
#tetriscanvas {
    background: #2c2c2c;
    border: 2px solid black;
    display: block;
    margin-top: 30px;
    margin-left: 80px;
}
#figurecanvas {
    display: block;
    margin: 10px auto;
}
/* кнопки всегда под игрой */
#tetris_buttons {
     margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* ачивки справа (ВАЖНО: отдельно) */
#achievement {
    width: 300px;
    min-height: 300px;
    color: yellow;
    font-size: 20pt;
    font-style: italic;
    margin-top: 60px;
}

.btn {
   width: 80px;
    height: 80px;
    font-size: 1.8em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn1 {
    font-size: 1.7em;
    width: 110px;
    height: 80px;
    
}
