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


        /* layout basics: bg imgaes, font, margin... etc. */

#flex {
  display: flex;
}

/* this is the color of the main content area,
    between the sidebars! */
    
body {
  background-color: black;
  font-family: 'Nunito', sans-serif;
  margin: 0;
  color: #fff;
}

main {
  background-color: #000;
  flex: 1;
  padding: 15px;
  order: 2;
}

#container {
  max-width: 1800px;
  margin: 0 auto;
}

#container a {
  color: #D3BE9E;
  font-weight: bold;
}

#container a:hover {
  color: #8a54a8;
}




@font-face {
  font-family: Nunito;
  src: url('fonts/Nunito-Regular.ttf');
  
}

@font-face {
  font-family: Nunito;
  src: url('fonts/Nunito-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Nunito;
  src: url('fonts/Nunito-Italic.ttf');
  font-style: italic;
}

@font-face {
  font-family: Nunito;
  src: url('fonts/Nunito-BoldItalic.ttf');
  font-style: italic;
  font-weight: bold;
}


        /* these align stuff */
  
.aligncenter {
    text-align: center;
}

.left-align {
    text-align: left;
        }

.right-align {
    text-align: right;
}

      /* these style text */
      
h1 {
  font-family:'Nunito', sans-serif;
  font-size: 2.3em;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

h2 {
  font-family:'Nunito', sans-serif;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
}

p {
  font-family:'Nunito', sans-serif;
  font-size: 1.3em;
  color: #e6e6fa;
  text-align: center;
  padding: 3px;
}




      /* These add a border to stuff */

.solid {
  border-style: solid;
  border-radius: 10px;
  border-color: #d8bfd8;
  
}
  
.outset {
  border-style: outset;
  border-width: 1px;
  border-radius: 5px;
  border-color: #D3BE9E;
}

.picframe {
  border: 10px solid #9cab65;
  border-image: url("assets/border-by-dollarchive03.png") 10 round;
  margin: 5px;
}


      /* This is margin stuff */

.tbmargin {
  margin-top: 30px;
  margin-bottom: 30px;
}

.lrmargin {
  margin-left: 30px;
  margin-right: 30px;
}