html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root{
  --bg: #ffffff;
  --lightgray: #bbbbbb;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 0px;
    margin: 0px;
}

header {
    width: 100%;
    padding: .33em 0;
    margin-bottom: 1em;
    border-bottom: 1px solid var(--lightgray);
}
header h1 {
    margin: 0;
    padding: 0 1em;
    font-size: 12px;
    text-align: center;
    width: 100%;
    font-style: normal;
}
footer {
    width: 100%;
    padding: .5em 0;
    margin-top: 2em;
    border-top: 1px solid var(--lightgray);
    text-align: center;
    font-size: 12px;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}



/* home page */

.box {
    padding:1em;
    margin: 2em;
}
.box h1 {
    margin: .5em;
}
.center {
    text-align: center;
}
.hidden {
    display: none;
}
.icon-wrapper {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

#rays {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: url(images/rays-transparent.png) 0 0 repeat;
    background-size: cover;
    -webkit-animation-name: rotate;
    -webkit-animation-duration:77s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -moz-animation-name: rotate;
    -moz-animation-duration:77s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:linear;
}
@-webkit-keyframes rotate {
from {-webkit-transform:rotate(0deg);}
to {  -webkit-transform:rotate(360deg);}
}

@-moz-keyframes rotate {
from {-moz-transform:rotate(0deg);}
to {  -moz-transform:rotate(360deg);}
}
#icon {
    position: absolute;
    display: block;
    top: 49.5%;
    left: 45.8%;
    line-height: 0px;
    margin: 0px;
    padding: 0px;
}

.content {
    max-width: 1033px;
    margin: 0 auto 4em;
}

.toc {
    max-width: 577px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px;
}
.toc li {
    width: 100%;
    border-bottom: 1px solid black;
    padding: .5em 0;
}


/* archive archive page */
.aa-page {
  font-family: "Cabin", "Source Code Pro", "Work Sans", serif;
}
.aa-page .top {
  text-align: center;
}
.aa-page section h3,
.aa-page section {
  font-size: 1em;
}
.aa-page section h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid black;
}
.aa-page section h3 {
  margin-bottom: 0;
}
.aa-page section p {
  font-size: .9em;
  margin-top: 0.25em;
}
.aa-page a {
  color: black;
  text-decoration: underline;
}

.aa-page .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}