﻿@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic+Coding|Roboto|Source+Sans+Pro&display=swap');

html {
    height: 100%;
}

body {
    background-color: rgb(244, 246, 249);
    background-image: url(inlay.svg);
    background-size: 50%;
    background-position: right bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Source Sans Pro', sans-serif;
    color: rgb(52, 58, 64);
}

main {
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 1px rgba(0,0,0,.025), 0 1px 3px rgba(0,0,0,.05);
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
}

nav {
    margin-top: 10px;
    text-align: center;
}

nav ul {
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
}

nav li a {
    color: rgb(52, 58, 64);
    text-decoration: none;
    padding: 10px;
}

nav li a:hover {
    background: white;
}

table {
    margin: 0 auto;
    font-size: calc(16px + 1vw);
}

th {
    text-align: right;
    padding-right: 10px;
}

td {
    text-align: left;
    padding-left: 10px;
    width: 50%;
    font-family: 'Nanum Gothic Coding', monospace;
}

h1 {
    text-align: center;
    font-size: calc(32px + 1vw);
    margin: 0;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Roboto' sans-serif;
    color: #495057;
}

.box {
    background: rgba(255,255,255,0.6);
    max-width: 1200px;
    box-shadow: 0 0 1px rgba(0,0,0,.025), 0 1px 3px rgba(0,0,0,.05);
    margin: 30px auto;
    padding: 30px;
}