/*
 * File: style/default.css
 * Author: David Sulik
 * Description: Provide the default layout and style of the website.
 */


/* Allow spacing to be as designed. */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

p, h2 {
    margin-top: 1rem;
}


/* Body */
body {
    padding: 1rem;

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

    position: relative;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

body * {
    text-align: center;
    width: 100%
}
