/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Bpmf+Zihi+Kai+Std&display=swap');

body {
  background-color: #ffd6eb;
  color: #006e44;
  font-family: 'JetBrains Mono', mono;
  font-size: 11pt;
  font-weight: 300;
  max-width: 1000px;
  margin: auto;
  padding: 1em;
  line-height: 1.5;
}
.note {
  border: none;
  border-radius: 4px;
  background-color: #faf9de;
  box-shadow: 0 0 5px #999;
  color: #333;
  margin: 1em;
  padding: 2em;
  text-align: left;
  width: 300px;
  background-image: 
    linear-gradient(#ccc 1px, transparent 1px),
    linear-gradient(90deg, #ccc 1px, transparent 1px);
  background-size: 20px 20px;
  rotate: -1deg;
}
.status {
  border: 1px solid #006e44;
  border-radius: 4px;
  margin: 2em;
  padding: 2em;
  text-align: left;
}
.status-text {
  border: 1px solid #006e44;
  border-radius: 4px;
  margin: 0 1em 1em 0;
  padding: 1em;
  text-align: left;
}
.scallop-border {
  border-image-source: url(/images/doily.png);
  border-bottom-style: solid;
  border-bottom-width: 7px;
  border-image-outset: 0;
  border-image-repeat: round;
  border-image-slice: 7 fill;
  border-image-width: 1;
  border-left-style: solid;
  border-left-width: 7px;
  border-right-style: solid;
  border-right-width: 7px;
  border-top-style: solid;
  border-top-width: 7px;
}
.scalloped-box {
  margin-top: 1em;
  --r: 8px; /* radius of circles */
  width: 500px;
  aspect-ratio: 1;
  padding: calc(1.5*var(--r));
  background: white;
  box-shadow: 0 0 5px #666;
  mask: 
    linear-gradient(#000 0 0) no-repeat
     50%/calc(100% - 2*var(--r)) calc(100% - 2*var(--r)), 
    radial-gradient(farthest-side,#000 97%,#0000) 
     0 0/calc(2*var(--r)) calc(2*var(--r)) round;
}
@media screen and (max-width: 600px) {
.scalloped-box {
  max-width: 90%;
  }
}
a {
  color: red;
  text-decoration: none;
}
b {
  line-height: 1.8;
  font-weight: 600;
}
h1 {
  font-family: 'Bpmf Zihi Kai Std', serif;
  font-size: 40pt;
}
h2 {
  font-size: 24pt;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.5em;
}
h3 {
  font-family: 'Bpmf Zihi Kai Std', serif;
  font-size: 34pt;
  margin-bottom: 0;
}
h4 {
  font-family: 'Bpmf Zihi Kai Std', serif;
  font-size: 18pt;
  margin-bottom: 0.75em;
}
h5 {
  font-weight: 500;
}
h6 {
  color: #006e44;
  font-size: 10pt;
  font-weight: 300;
}
hr {
  border: 0;
  border-top: 1px dashed #006e44;
}
img {
  pointer-events: none;
}
li {
  margin-bottom: 0.5em;
}
.header-img img {
  max-width: 600px;
  max-height: 400px;
  box-shadow: 0 0 2px #333;
}
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.container-2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.container div {
  display: flex;
  margin: auto;
  min-width: 0;
  min-height: 0;
}
div img {
  max-width: 600px;
  max-height: 400px;
}
.container-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2em 0 2em;
}
.link {
  font-size: 36pt;
  margin: 0;
  padding-bottom: 0.35em;
  line-height: 0.9;
}
.link a {
  color: #006e44;
}
.link a:hover {
  color: red;
}
.link-text {
  color: red;
  font-size: 10pt;
  font-weight: 300;
}
p {
  margin: 0 0 1em 0;
}
.text {
  column-count: 2;
  column-gap: 1em;
}
.timestamp {
  color: red;
  font-size: 9pt;
  text-transform: uppercase;
  margin: 1em 0 1em 0;
  text-align: right;
  border-top: 1px dotted #006e44;
  padding: 0.5em 0 0 0;
}
.wrapper {
  margin: 0em 2em 2em 2em;
}

/* Mobile */
@media screen and (max-width: 768px) {
.container div {
  gap: 0;
  overflow: hidden;
}
img {
  width: 50%
 }
.container-2 {
  margin-left: 1em;
  margin-right: 1em;
 }
 div img {
   width: 200px;
 }
 .link {
   padding: 3px;
 }
 .text {
   column-count: 1;
 }
}