/* Main CSS */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111;
    background: #fff;
}

.container {
    width: min(100% - 32px, 1200px);
    margin: 0 auto;
}

.site-header,
.site-footer {
    padding: 20px 0;
}

.site-logo {
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.site-main {
    min-height: 70vh;
}
