* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;

    scrollbar-gutter: stable both-edges;
}

body {
    min-height: 100vh;
    
    margin: 0;
    scrollbar-gutter: stable both-edges;
    background-color: rgba( 245, 245, 245, 1 );

    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

@media( max-width: 600px ) {
    
}
