﻿body {
    position: relative;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    margin: 0;
}

.pageContainer {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    position: absolute;
    width: 680px;
    height: 750px;
    left: calc(50% - 680px/2);
    top: 0px;
}

.pageImage {
    width: 560px;
    height: 456px;
    order: 0;
}

.messageContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 560px;
    height: 94px;
    order: 1;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.messageHeader {
    font-family: Rubik;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    line-height: 125%;
    color: #1A2026;
    width: 560px;
    height: 30px;
    margin: 0;
    padding: 0;
}

.message {
    font-family: Rubik;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    line-height: 150%;
    color: #69717A;
    width: 560px;
    height: 48px;
    margin: 0;
    padding: 0;
}

/* Screen sizes less than 480px */
@media only screen and (max-width: 480px) {
    .pageContainer {
        width: 448px;
        height: 622px;
        left: calc(50% - 448px/2);
    }
    .pageImage {
        width: 328px;
        height: 250px;
    }
    .messageContainer {
        width: 328px;
        height: 172px;
    }
    .messageHeader {
        width: 328px;
        height: 60px;
    }
    .message {
        width: 328px;
        height: 96px;
    }
}  
