/*
    This file contains the default style of the
    entire website.
*/

body {
    /* Custom Sizing */
    margin: 0;
    padding: 0;

    max-width: 800px;
    width: 100%;

    /* Center Position */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/*
    Although this seems minor, it prevents
    webpage overflow on smaller browsers.
*/
* {
    box-sizing: border-box;
}