*{padding:0;
    margin:0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 97vh;
    margin: 0 auto;
    width: 300px;
}

h1 {
    text-align: center;
}

.block-container {
    width: 300px;
    /* Ширина блока */
    height: 36%;
    /* Высота блока */
    /* border: 1px solid #ccc; */
    padding: 10px;
    margin-bottom: 2px;
    /* Расстояние между блоками */
    overflow-y: auto;
    /* Включаем вертикальную прокрутку, если текст слишком длинный */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block-container p {
    font-size: 27px;
    font-weight: 800;
    margin: 5px 0;
}

.button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

button,
#menu {
    margin: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
}

.but_top {
    position: absolute;
    top: 5px;
    display: flex;
}

.menu_open {
    position: absolute;
    top: 40px;
    right: -150px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    transition: right 0.3s, opacity 0.3s;
}

.menu_open.active {
    right: 0;
    opacity: 1;
}