/* 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." */
:root {
  --main-bg-color: #fff7d9;
  --main-border: 4px solid black;
}

@font-face {
     font-family: "DalekPinpointBold";
     src: url("https://oraunos.neocities.org/font-folder/dalekpinpointbold-webfont.woff");
}

html {
  background-image: url('https://oraunos.neocities.org/assets/greek-pattern.png'), url("https://oraunos.neocities.org/assets/greek-cyan-background.jpg");
  background-repeat: repeat-x, repeat;
  background-size: 690px 120px, auto;
  background-position: 0 8px;
  font-family: 'DalekPinpointBold';
}

div {
  width: 100%;
  height: 100%;
  min-width: 100px;
  min-height: 100px;
}

h1 {
  text-align: center;
  text-shadow: 2px 2px 1px black;
}
h2 {
  margin: -8px; 
  position: relative;
  top: 8px;
  text-align: center;
}

p {
  color: #522200; 
  font-size: 1em;
}
.indented {
  text-indent: 30px;
}

img {
  display: block;
  line-height: 0;
  max-width: 100%;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

iframe {
  display: flex; 
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  height: 600px;
}

.main {
  width: 100%;
  height: auto;
  margin: 1% auto;
  background-image: url('https://oraunos.neocities.org/assets/hydra-symbol.png');
  background-size: 500px 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--main-bg-color);
  padding: 0 20px 20px 20px;
  border: var(--main-border);
}

.leftbanner {
  background-color: var(--main-bg-color);
  float: left; 
  padding-left: 10px;
  padding-right: 10px;
  max-height: 120px;
  width: 25%;
  border: var(--main-border);
  overflow: auto;
}

.rightbanner {
  background-color: var(--main-bg-color);
  float: right; 
  padding-left: 10px;
  padding-right: 10px;
  max-height: 120px;
  width: 25%;
  border: var(--main-border);
}

.ascii {
  line-height: 0px;
  position:relative;
  left:38%;
}

.logs {
  border: 3px groove #fce795;
  margin: 0% 0%;
}
.journalentry {
  border: 3px groove #fce795;
  margin: 0% 0%;
  padding: 10px;
}

.thoughtcolumn {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.thoughtrow {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 4%;
}

.leftthought, .rightthought {
  border: 4px dashed #70cfff;
  border-radius: 100%;
  width: 55%;
  margin: 1% 0px;
  padding: 5%;
  text-align: center;
}
.leftthought {
  align-self: flex-start;
}
.rightthought {
  align-self: flex-end;
}

.row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.column {
  display: flex;
  flex: 4; 
  align-items: flex-end;
}
.sidecolumn {
  display: flex;
  flex: 2; 
  align-items: flex-end;
}

.stack {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.container {
  display: flex;
  justify-content: center;
  width: 1000px;
}

.container div {
  flex-basis: 120px;
  border: 3px solid rgba(0, 0, 0, 0.2);
}

.box {
  flex-shrink: 1;
}

.box1 {
  flex-shrink: 2;
}