uix-homepage {
    /* Reset */
    * {
        box-sizing: border-box;
        left: 0;
    }
    
    html, body {
        height: 100%;
        width: 100%;
        overflow-x: hidden;
        background: black;
    }
    
    .defaultpage {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        left: 0;
        top: 0;
        position: absolute;
        width: 100%;
        overflow-y: visible;
        overflow-x: hidden;
    }
    
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        flex: 0;
        color: white;
    }
    
    /* Main Content */
    .main {
        display: flex;
        flex: 1;
        flex-direction: column;
        margin-top: 90px;
        position: relative;
        background-color: rgb(53, 53, 53);
        overflow-y: visible;
        overflow-x: hidden;
    }
    
    .content {
        flex: 1;
        overflow-y: visible;
        overflow-x: hidden;
    }
    
    .footer {
        height: 50px;
        background: rgb(53, 53, 53);
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 2;
        position: absolute;
        z-index: 9999;
        bottom: 0;
        overflow: hidden;
    }
    
    @media (min-width: 950px) {
        .main {
            margin-top: 140px;
        }
    }
    
}

