body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text {
    margin-top: 24px;
}

.buttons-area {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}


.image-area {
    width: 90%;
    height: 512px;
    background-color: #aaa;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 8px;
}

img {
    max-width: 90%;
    max-height: 512px;
    border-radius: 8px;
}

.button {
    cursor: pointer;
    width: 128px;
    height: 48px;
    background-color: rgb(0, 140, 255);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
    margin: auto 8px;
}

.decline-btn {
    background-color: rgb(rgb(156, 0, 0), green, blue);
    transition: 250ms;
}