:root {
    --white: #ffffff;
    --bgColor: #f3f6eb;
}

* {
    padding: 0;
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
}

body {
    background: var(--bgColor);
}

/* Header */
header {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    width: 330px;
}

/* Content */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

@media screen and (max-width: 473px) {
    section {
        font-size: 14px;
    }
}

/* Content - Message */
main #message {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--companyColor);
    max-width: 410px;
    padding: 15px;
}

main #message-text {
    color: var(--white);
}

main #message-image {
    background: var(--white);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    margin-left: 20px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

main #message-image img {
    height: 40px;
    width: 40px;
}

/* Content - Steps */
main #steps .step {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    max-width: 410px;
    background: var(--white);
}

main #steps .step .step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--companyColor);
    color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    margin-right: 15px;
}


/* INDEX PAGE */
#guestcompass {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#guestcompass img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
}