body {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.app_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #f1f1f1;
    height: 100vh;
    width: 100vw;
}

.app_block_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.app_block_content_title {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
}

.app_block_content_text {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

.app_block_content_button {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #279b32;
    padding: 14px 25px;
    border-radius: 50px;
    margin-top: 20px;
    text-decoration: none;
    border: none;
}