/* Whole Page Styles */

/* layout */
body {
    display: grid;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 100vh;
}

aside {
    /* hide on mobile only, see desktop styles below */
    display: none;
    background-image: url("");
    background-size: cover;
    background-position: 50%;
    width: 100%;
    height: 100%;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.posting-header {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 24px;
    padding-bottom: 48px;
}

.posting-header small,
.posting-body small {
    display: block;
    margin-bottom: 16px;
    color: #000000;
}

.posting-header__social-wrapper {
    display: flex;
}

.posting-body {
    flex-direction: column;
    display: flex;
    align-items: center;
    padding: 48px 48px 16px;
}

.posting-body,
.posting-footer {
    background-color: #f4f5f7;
}

.posting-footer {
    display: flex;
    justify-content: center;
    padding-bottom: 48px;
}