:root {
  --bg-img: url('/assets/abtbg.png'); 
  --forest-img: url('/assets/abtmain.png');
  --box-color: #C8CFB680;
  --font-color: #E4E8DA;
  --inner-bg: #30312b;
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  padding: 5em;
  background-image: var(--bg-img);
  background-size: cover;
  background-attachment: fixed;
  color: var(--font-color);
  font-family: 'Averia Serif';
}

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5em;
  width: 1000px;
  padding: 0.5em;
}

.inner {
  background-color: var(--inner-bg);
  padding: 0.5em;
  box-shadow: inset 0 0 10px var(--box-color);
  border-radius: 0.5em;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.inner > a {
  display: flex;
  align-items: center;
}

#forest {
  display: flex;
  align-items: end;
  width: auto;
  height: 300px;
  margin: 0.5em;
  padding: 0.5em;
  border: 1px solid #000;
  box-shadow: inset 0 0 10px #5C614E;
  border-image: url(/assets/lace.png) 7 / 7px / 4px round;
  background-image: var(--forest-img);
  background-size: cover;
  background-position: center;
  font-size: 1.5em;
  font-style: italic;
}

#forest > p {
  margin: 0;
}

#title {
  font-family: 'Jane';
  font-size: 2em;
  margin: 0;
}

/* title text */
.tt {
  font-size: 2em;
  margin: 0;
  position: relative;
  top: 5px;
  font-style: italic;
}

.pusher {
  position: relative; 
  bottom: 0.3em;
}

.box {
  -webkit-box-shadow:0px 0px 38px 0px rgba(175,196,141,0.65);
  -moz-box-shadow: 0px 0px 38px 0px rgba(175,196,141,0.65);
  box-shadow: 0px 0px 38px 0px rgba(175,196,141,0.65);
  background-color: var(--box-color);
  padding: 1em;
  border: solid #E4E8DA;
  border-width: 3px 0;
  border-radius: 0.5em;
}


@media only screen and (max-width: 625px) {
  body {
    margin: 0;
  }
  
	.container {
        max-width: 650px;
        margin: 0px auto !important;
    }
    
  .row {
    flex-direction: column !important; 
  }
  
  .keep {
    flex-direction: row !important;
  }
}

/*

  ROWS AND COLUMNS

*/

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
}

.col {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5em;
}

.col-mid {
  display: flex;
  flex: 2;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5em;
}

.col-big {
  display: flex;
  flex: 3;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5em;
}

.grow {
  flex-grow: 1;
}

/*

  FONTS
  
*/

@font-face {
  font-family: 'Averia Serif';
  src: url(/assets/fonts/AveriaSerifLibre-Regular.ttf);
}

@font-face {
  font-family: 'Jane';
  src: url(/assets/fonts/JaneAust.ttf);
}

