/* Elements */
* {
    margin: 0;
    padding: 0;
    background-color: #E3D9CE;
    color: #20120E;
}

body {
    margin: 25px auto;
    padding: 20px;
    width: 1000px;
    font-family: 'IM Fell English', serif;
    color: #20120E;
}

p {
    font-family: 'IM Fell English', serif;
    font-weight: 700;
}

article {
    padding: 0px 30px 0px 30px;
}

/* Title Bar */
.title-bar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.title-bar h1 {
    font-family: 'IM Fell English', serif;
}

.title-bar p {
    font-family: 'Cardo', serif;
}

/* Navbar */
.nav-box {
    list-style-type: none;
    display: flex;
    background-color: #20120E;
    margin: 0;
    padding: 0;
}

.nav-box li {
    background-color: #20120E;
    color: #E3D9CE;
}

.nav-box li a {
    text-decoration: none;
    color: #E3D9CE;
    background-color: #20120E;
    font-size: 16px;
    display: block;
    padding: 12px;
    border: 1.5px dotted#20120E;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.nav-box li.secret-link {
    margin-left: auto;
}

.nav-box .secret-link a {
    color: #20120E;
}

.nav-box li a:hover {
    color: #20120E;
    background-color: #E3D9CE;
}

/* Hero */
.hero {
    margin: 0;
    padding: 0;
}

/* Padding */
.p20 {
    padding: 20px;
}

/* Columns */
.left-column {
    width: 50%;
}

.left-column-xxs{
    width: 20%;
}

.left-column-xsm {
    width: 30%;
}

.left-column-sm {
    width: 40%;
}

.left-column-md {
    width: 60%;
}

.left-column-lg {
    width: 70%;
    border-right: 1px solid #20120E;
}

.left-column-xl {
    width: 80%;
}

.right-column {
    width: 50%;
}

.right-column-xxsm {
    width: 20%;
}

.right-column-xsm {
    width: 30%;
}

.right-column-sm {
    width: 40%;
}

.right-column-md {
    width: 60%;
}

.right-column-lg {
    width: 70%;
}

.right-column-xl {
    width: 80%;
}

.right-column-xsm img {
    width: 100%;
    margin-top: 30px;
}

.two-column {
    display: flex;
    flex-direction: row;
}

.two-column-reverse {
    margin: 0;
    display: flex;
    flex-direction: row-reverse;
}

.two-column h2 {
    font-size: 24px;
}

.two-column article {
    padding-top: 30px;
    padding-bottom: 30px;
}

.two-column article ul li {
    list-style-type: none;
}

.scroll {
    overflow: scroll;
}

.scroll .date {
    margin-bottom: 20px;
    font-size: 16px;
}

.scroll .letter {
    width: 75px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.recent-blog .scroll p {
    border-bottom: 2px dotted #20120E;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.recent-blog .scroll p:last-child {
    padding-bottom: 30px;
    margin: 0;
    border: none;
}

/* Line Breaks */
.line-break {
    height: 60px;
    background-color: #20120E;
    display: flex;
}

.gap-sm {
    height: 10px;
}

.gap-md {
    height: 30px;
}

.gap-lg {
    height: 50px;
}

.line-break h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #20120E;
    color: rgb(227, 217, 206);
}

.line-break .sword {
    background-color: #20120E;
    height: 50px;
}

/* Recent Blog (Homepage) */
.recent-blog {
    height: 500px;
}

.recent-blog .scroll {
    height: 399px;
}

.featured-photo {
    background-image: url('../images/clocktower-dithered.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.featured-photo:hover {
    background-image: url('../images/clocktower-sm.jpg');
    transition: opacity 1s;
}

/* Active Quests & Notice Board */
.quests {
    height: 250px;
}

.quests .scroll {
    height: 184px;
}

.quests .scroll ul li {
    padding-bottom: 2px;
}

.quests .scroll ul li:last-child {
    padding-bottom: 20px;
}

.changelog .scroll {
    height: 184px;
}

.changelog .scroll p {
    border-bottom: 2px dotted #20120E;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.changelog .scroll p:last-child {
    padding-bottom: 20px;
    margin: 0;
    border: none;
}

/* Blogs Page*/
.blog h2 {
    margin-bottom: 10px;
}

.blog .li {
    border-bottom: 2px dotted #20120E;
    padding: 10px 0px 10px 0px;
}

.blog .li a {
    text-decoration: none;
}

.blog p .initial {
    font-family: 'Jacquard 12', serif;
    font-size: 50px;
    line-height: 30px;
    margin: 0;
    padding: 0;
}

.blog img {
    width: 100%;
}

/* Footers */
.mobile-dis {
    background-color: #E3D9CE;
    border: 2px dotted #20120E;
    padding: 15px;
    font-size: 20px;
}

.blog-footer {
    padding: 0px 20px 0px 20px;
}

.blog-footer h4 {
    background-color: #20120E;
    color: #E3D9CE;
}

.blog-footer h4 a {
    background-color: #20120E;
    color: #E3D9CE;
}

.blog-footer img {
    width: 40px;
    background-color: #20120E;
}

/* Borders */
.bb {
    border-bottom: 1px solid #20120E;
}

.tb {
    border-top: 1px solid #20120E;
}

.lb {
    border-left: 1px solid #20120E;
}

.rb {
    border-right: 1px solid #20120E;
}

.bdot {
    border: 2px dotted #20120E;
}

/* Background & Text Color */
.solid-bg-dark {
    background-color: #20120E;
}

.text-light {
    color: #E3D9CE;
}

.text-dark {
    color: #20120E;
}

/* Cursor */
.tooltip {

}

/* Animations */

/* Quick Fix */
.center {
    justify-content: center;
    align-items: center;
}

.align-center{
    align-items: center;
}

.flex {
    display: flex;
}

.flex-between {
    justify-content: space-between;
}

.flex-left {
    justify-content: left;
}

.flex-right {
    justify-content: right;
}

.bold {
    font-weight: bold;
}

/* Fonts */
.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-english-regular-italic {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: italic;
}

.jacquard-12-charted-regular {
  font-family: "Jacquard 12 Charted", system-ui;
  font-weight: 400;
  font-style: normal;
}

.jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

.cardo-regular {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
}

.cardo-bold {
  font-family: "Cardo", serif;
  font-weight: 700;
  font-style: normal;
}

.cardo-regular-italic {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: italic;
}

