/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
 @import url('https://fonts.googleapis.com/css?family=Muli');
 html,
 body {
     margin: 0;
     padding: 0;
 }
 html,
 body,
 h1,
 p {
     font-family: 'Muli', sans-serif;
 }
 .page-main {
     display: flex;
     flex-flow: column;
     height: 100vh;
     justify-content: center;
 }
 .header,
 .main-container,
 .footer {
     text-align: center;
 }
 .footer {
     background-color: #4f1a6c;
     bottom: 0;
     position: absolute;
     width: 100%;
 }
 .footer p {
     color: #fff;
 }