:root {
  --bg-bright: #91bff5;
  --bg-mid: #5292d6;
  --bg-dark: #192587;
  --shade-bright: #8a9fb8;
  --shade-mid: #71849b;
  --shade-dark: #57687e;
  --shade: var(--shade-bright) 0%, var(--shade-mid) 43%, var(--shade-mid) 57%, var(--shade-dark) 100%;
}

body {
    background-image: linear-gradient(to bottom right, var(--bg-bright) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%), url("images/hatch.webp");
    background-blend-mode: multiply;
    background-attachment: fixed;
    margin: 0;
}

.outer {
    margin: auto;
    width: 960px;
    min-height: 100vh;
    background: white;
    background-image: linear-gradient(to right, var(--shade)), linear-gradient(to right, var(--shade));
    background-size: 16px;
    background-position: 0 0, 944px 0;
    background-repeat: repeat-y;
}

.inner {
    padding: 16px 32px;
}

.logo {
    background-image: url("images/bumpy_teapot.webp");
    background-repeat: no-repeat;
    background-size: 195px 112px;
    background-position: 16px 0;
    padding: 0 16px;
    height: 112px;
    user-select: none;
    filter: drop-shadow(4px 4px 4px #00000080);
    text-align: right;
}

.site-title {
    font-size: 84px;
    font-family: sans-serif;
    font-weight: bold;
    color: var(--bg-mid);
    filter: url(#raised);
    position: relative;
    top: -8px;
}

.site-subtitle {
    font-size: 32px;
    font-family: sans-serif;
    color: #f50;
    position: relative;
    top: -24px;
}
