@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Roman.ttf") format("truetype");
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Italic.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}

body {
  margin: 0;
  background-color: #111214;
  font-family: 'Crimson';
  }

page-title {
  margin: auto;
  width: 90%;
  background-color: #e4e4d8;
  color:#111214;
  font-family: 'Crimson';
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 25px;
  height: 150px;
  padding: 0.5em 1em;
  position: sticky;
}
  
.title {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  top: 25px;    
  height: 150px;
  padding: 0.5em 1em;

}

/*Everything goes inside here.*/
.wrapper {
  width: 90%;
  margin: 0 auto;
  }
  
.sidebar-img, .footer, .title, .links, .box {
  margin-top: 25px;
  background-color:#e4e4d8;
  color:#111214;
  }

.sidebar-img {
  margin: 0 auto;
  margin-top:25px;
}

.white {
  margin-top: 25px;
  background-color:#e4e4d8;
  color:#111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.orange1 {
  margin-top: 25px;
  background-color: #e5703a;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.orange2 {
  margin-top: 25px;
  background-color: #e55439;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.orange3 {
  margin-top: 25px;
  background-color: #e53238;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.blue1 {
  margin-top: 25px;
  background-color: #3556ae;
  color: #e4e4d8;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.blue2 {
  margin-top: 25px;
  background-color: #322c74;
  color: #e4e4d8;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.blue3 {
  margin-top: 25px;
  background-color: #261d3b;
  color: #e4e4d8;
  border: 1px solid black;
  padding: 0.5em 1em;
}
  
.title, .links, .footer {
  text-align: center;
  }
  
/*Navigation links.*/
.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
.links li {
  display: inline-block;
  }

/*Some fancy code for fun, to add special characters around the navigation links. Change content to "" if you don't want these.*/
.links li:before {
  content: "「 ";
  }
  
.links li:after {
  content: " 」 ∷ ";
  }
  
.links .last:after {
  content: " 」";
  }
  
.links li:before, .links li:after {
  letter-spacing: 0.1em;
  }
  
/*Basic box code that is used for all content boxes on the page.*/
.box {
  border: 1px solid black;
  padding: 0.5em 1em;
  width: 100%;
  box-sizing: border-box;
  }
  
/*Goes inside the box class. Not given any style by default, but can be used for stuff like fancy borders.*/
.inner {
  width: auto;
  box-sizing: border-box;
  }
  
/*Prevent image overflow.*/
.box img, .sidebar img {
  max-width: 100%;
  height: auto;
  }
  
/*Wrapper for the sidebar.*/
.sidebar {
  width: 200px;
  float: left;
  }
  
/*Container for the sidebar image.*/
.sidebar-image {
  border: 0px solid black;
  }
  
/*Remove extra padding line at the bottom of the image.*/
.sidebar-image img {
  display: block;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 225px;
  }
  
/*Two columns by default. The "single-column" class can be added to make it one column.*/
.main {
  columns: 2;
  column-gap: 25px;
  width: 100%;
  }
  
/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  display: inline-block;
  }
  
.single-column {
  columns: 1;
  min-width: 100%;
  }
  
.footer {
  margin-bottom: 25px;
  }
  
@media(max-width:915px) {
  .wrapper {    
    width: 95%;
    }
    
  .main-wrapper {
    width: calc(100% - 225px);
    }
  }
  
@media (orientation: portrait), (max-width: 480px) {
  .wrapper {
    width: 100%;
    }
  
  .main-wrapper, .sidebar, .footer {
    margin: 0 auto;
    width: 90%;
    }
  
  .sidebar {
    float: none;
    display: block;
    }

  .sidebar-image {
    margin: 0 auto;
    width: 33%;
    margin-top:25px;
    }

  .sidebar .sidebar-image img {
    width: 100%;
    }
    
  .footer {
    margin-bottom: 25px;
    }
  
  }

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Roman.ttf") format("truetype");
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Italic.ttf") format("truetype");
  font-style: italic;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: Crimson;
  src: url("/fonts/Crimson/Crimson-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}

body {
  margin: 0;
  background-color: #111214;
  font-family: "Crimson";
}

.page-title {
  margin: auto;
  background-color: #111214;
  position: sticky;
  bottom: 0px;
  border-top: 1em solid;
  border-top-color: #111214;
  border-bottom: 1em solid;
  border-bottom-color: #111214;
  columns: 2;
  column-gap: 1em;
  height: auto;
  padding: auto;
  font-family: "Crimson";
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 0;
}

.pt-c1 {
  box-sizing: border-box;
  background-color: #111214;
  width: 200px;
  float: left;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pt-c2{
  background-color: #e4e4d8;
  color: #111214;
  padding: 0 auto;
  width: 100%;
  float: right;
  height: 150px;
  margin: 0;
  border: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

img {
  max-width: 100%
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  top: 25px;
  height: 150px;
  padding: 0.5em 1em;
}

/*Everything goes inside here.*/
.wrapper {
  width: 100%;
  margin: 1em auto;
}

.footer,
.title,
.links,
.box {
  margin-top: 25px;
  background-color: #e4e4d8;
  color: #111214;
}

.white {
  margin-top: 25px;
  background-color: #e4e4d8;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.orange1 {
  margin-top: 25px;
  background-color: #e5703a;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.orange2 {
  margin-top: 25px;
  background-color: #e55439;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.orange3 {
  margin-top: 25px;
  background-color: #e53238;
  color: #111214;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.blue1 {
  margin-top: 25px;
  background-color: #3556ae;
  color: #e4e4d8;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.blue2 {
  margin-top: 25px;
  background-color: #322c74;
  color: #e4e4d8;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.blue3 {
  margin-top: 25px;
  background-color: #261d3b;
  color: #e4e4d8;
  border: 1px solid black;
  padding: 0.5em 1em;
}

.title,
.links,
.footer {
  text-align: center;
  padding; 0;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/*Navigation links.*/
.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.links li {
  display: inline-block;
}

/*Some fancy code for fun, to add special characters around the navigation links. Change content to "" if you don't want these.*/
.links li:before {
  content: "「 ";
}

.links li:after {
  content: " 」 ∷ ";
}

.links .last:after {
  content: " 」";
}

.links li:before,
.links li:after {
  letter-spacing: 0.1em;
}

/*Basic box code that is used for all content boxes on the page.*/
.box {
  border: 1px solid black;
  padding: 0.5em 1em;
  width: 100%;
  box-sizing: border-box;
}

/*Goes inside the box class. Not given any style by default, but can be used for stuff like fancy borders.*/
.inner {
  width: auto;
  box-sizing: border-box;
}

/*Prevent image overflow.*/
.box img,{
  max-width: 100%;
  height: auto;
}

}

/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 0px;
  width: 100%;
}

/*Two columns by default. The "single-column" class can be added to make it one column.*/
.main {
  columns: 2;
  column-gap: 25px;
  width: 100%;
  margin: 0;
}

/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  display: inline-block;
  margin: 0
}

.single-column {
  columns: 1;
  min-width: 100%;
  margin: 0 auto;
}

.footer {
  margin: 0 auto;
  background-color: #111214;
  position: sticky;
  bottom: 0px;
  border-top: 1em solid;
  border-top-color: #111214;
  border-bottom: 1em solid;
  border-bottom-color: #111214;
}

.colorFooter {
  columns: 6;
  margin: 0 auto;
  background-color: #111214;
  position: sticky;
  bottom: 0px;
  border-top: 1em solid;
  border-top-color: #111214;
  border-bottom: 1em solid;
  border-bottom-color: #111214;
}

@media (max-width: 915px) {
  .wrapper {
    width: 95%;
  }

  .main-wrapper {
    width: calc(100% - 225px);
  }
}

@media (orientation: portrait), (max-width: 480px) {
  .wrapper {
    width: 100%;
  }

  .main-wrapper,
  .footer {
    margin: 0 auto;
    width: 90%;
  }

  .footer {
    margin-bottom: 25px;
  }
}
