/* 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." */

/* Set up the font */
@font-face {
  font-family: pixelarial; /* We define a name for our font family */
  src: url(/pixel-arial-14.woff); /* we tell the browser where it is */
}

@font-face {
   font-family: daydream;
  src: url(/Daydream.woff)
}

body {
  background: url("backgrounds/bg1.png");
  background-size: cover;
  font-family: pixelarial;
  font-size: 7px;
  color: #636363;
}

.main {
    padding: 1%;
    flex: 1 1 100%;
    min-height: 50px;
    width: 850px;
    background-color: #544E4D;
    margin: auto;
    margin-top: 50px;
    border-style: ridge;
    border-width: 7px;
    border-radius: 25px;
    
    /* section content */

.section {
  display: grid;
  min-height: 50px;
  grid-template-rows: repeat(10, 70px);
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 15px;
}

.section-item {
  background-color: #F2EFED;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;

&.header {
  grid-row: span 2;
  grid-column: span 10;
  background-image: url(backgrounds/noctis.jpg);
  background-size: cover;
  background-position-y:350px;
  background-position-x:100px;
  border-style: ridge;
  overflow: hidden;
  border-width: 5px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

&.banner {
  grid-row: span 0.5fr;
  grid-column: span 10;
  border-style: inset;
  overflow: hidden;
  border-width: 5px;
}

.stamps {
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
  
&.side {
  grid-row: span 4;
  grid-column: span 2;
  border-style: ridge;
  overflow: hidden;
  border-width: 5px;
}

&.body {
  grid-row: span 4;
  grid-column: span 5;
  border-style: ridge;
  overflow: hidden;
  border-width: 5px;
}

&.side2 {
  grid-row: span 10;
  grid-column: span 3;
  border-style: ridge;
  overflow: hidden;
  border-width: 5px;
  border-bottom-right-radius: 25px;
  flex-direction: column;
}

&.body3 {
  grid-row: span 6;
  grid-column: span 7;
  border-style: ridge;
  overflow: hidden;
  border-width: 5px;
  border-bottom-left-radius: 25px;
}

.header1 {
  background: #5B6B76;
  color: #F2EFED;
  letter-spacing: 3px;
  font-size: 9px;
  padding: 5px;
  width: 100%;
  margin:0px;
  margin-block-end: 1em;
}

.dates {
  background: #91A0AB;
  color: #F2EFED;
  border-style: inset;
  border-width: 5px;
  border-radius: 15px;
}


