@charset "UFT-8";
@import './default.css';
:root {
    --wrap-width : 1000px;
}

#wrap {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-align: center;
    .inner {        
        width: var(--wrap-width);
        margin: 0 auto;
        h1 {
            font-size: 5em;
        }        
    }
}