#message_screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;

    .logo {
        margin-bottom: 30px;
    }

    .logo img {
        width: 160px;
        height: auto;
    }

    h1 {
        margin: 20px 0;
        font-family: 'Biotif', serif;
        font-size: 48px;
        color: #262626;
    }

    .subtitle {
        margin: 10px 0;
        font-family: 'Biotif', sans-serif;
        font-size: 20px;
        color: #89757d;
        max-width: 720px;

        &.important {
            color: #E94C1F;
        }
    }

    .action_btn {
        margin-top: 50px;
    }

    .action_btn img {
        margin-left: 5px;
    }
}