:root{
  --darkbox: rgba(37,20,80,0.5);
  --div: rgba(37,20,80,0);
  --text:rgba(235,210,255,1);
  --b-light: rgba(110,95,185,0.9);
  --b-dark: rgba(67,44,126,0.9);
}

*{ box-sizing: border-box; }

html,body{
  margin:0;
  padding:0;
  min-height:100%;
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  color: var(--text);
  background-image: url('/treesoflove.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

a{
  text-decoration: none;
  font-weight: bold;
}
a:hover{
  color: var(--text);
  text-decoration: underline;
}

#page{
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 16px 0;
}

#titlebar{
  text-align:center;
  padding: 8px 0;
  margin: 0 0 20px;
  border: 1px solid var(--b-light);
  background: none;
}
#titlebar .site-name{
  font-family: 'Courier New', Courier, monospace;
  font-size: 38px;
  margin: 0;
  letter-spacing: 2px;
  color: var(--text);
  font-weight: bold;
}

#links{
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 0 18px;
}
#links a{
  flex: 1 1 auto;
  text-align:center;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .3px;
  color: var(--text);
  background: var(--darkbox);
  border-style: solid;
  border-width: 3px;
  border-top-color: var(--b-light);
  border-left-color: var(--b-light);
  border-bottom-color: var(--b-dark);
  border-right-color: var(--b-dark);
  border-radius: 0;
  padding: 8px 10px;
}
#links a:hover{
  background: var(--darkbox);
  border-top-color: var(--b-dark);
  border-left-color: var(--b-dark);
  border-bottom-color: var(--b-light);
  border-right-color: var(--b-light);
  color: var(--text);
  text-decoration: none;
}

#layout{
  display:flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

#box2, #box3{
  background: var(--darkbox);
  border: 2px solid #5c4ba0;
  border-radius: 0;
  padding: 18px 20px;
}

#bigshits{
  flex: 2 1 480px;
  display: flex;
  flex-direction: column;
}
#box2{ width: 100%; }
#box3{ flex: 1 1 250px; text-align: left; }

#itoh-d{
  width: 100%;
  height: auto;
  display: block;
  margin-top: 16px;
  border: 2px solid #5c4ba0;
}

h1{
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  color: var(--text);
  background: var(--div);
  text-align: center;
  letter-spacing: .3px;
  margin: 0 0 12px;
  padding: 6px 4px;
  border: 2px solid #5c4ba0;
  border-radius: 0;
}
#box2 h1:first-child{ margin-top:0; }
#box2 h1:not(:first-child), #box3 h1:not(:first-child){ margin-top: 18px; }

p{ line-height: 1.6; margin: 8px 0; text-align: center; font-size: 14px; }

.contact-row{
  display:flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.icon-link{
  display:inline-block;
  background: var(--div);
  border-style: solid;
  border-width: 3px;
  border-top-color: var(--b-light);
  border-left-color: var(--b-light);
  border-bottom-color: var(--b-dark);
  border-right-color: var(--b-dark);
  border-radius: 0;
  padding: 3px;
}
.icon-link:hover{
  background: var(--darkbox);
  border-top-color: var(--b-dark);
  border-left-color: var(--b-dark);
  border-bottom-color: var(--b-light);
  border-right-color: var(--b-light);
}
.icon-link img{
  width:36px;
  height:36px;
  display:block;
  border-radius: 0;
}

iframe{
  border: none;
  margin-top: 10px;
}

@media (max-width: 620px){
  #titlebar .site-name{ font-size: 26px; }
  #layout{ flex-direction: column; }
  #links{ flex-direction: column; }
}