body{
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
}



.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 800px;
    width: 90%;
    height: 80%;
    border: 1px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
    background: #ccc;
}

.text {
    flex: 2;
    padding: 20px;
    box-sizing: border-box;
}

.image {
    flex: 1;
    text-align: center;
}

.button {
    margin-top: 20px;
}