/*
BLACK   #262424
DARK    #D72021
    20% SHADE #ac1a1a
MED     #680B0B
LIGHT   #EE7676
WHITE   #F6EFEF
    10% SHADE #ddd7d7
    20% SHADE #c5bfbf
*/

/*FONTS*/
.staatliches-regular {
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.do-hyeon-regular {
  font-family: "Do Hyeon", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* BOXES */
.body {
    background-color: #c5bfbf;
    background-image: url("https://www.transparenttextures.com/patterns/notebook-dark.png");
    padding: 5%;
}
.head {
    background-color:#D72021;
    color: #F6EFEF;
    border-radius: 3px 3px 0 0;
    padding: 20px;
}
.side { 
    background-color: #680B0B;
    color: #F6EFEF;
    padding: 15px;
    align-items: center;
    overflow:auto;
}
.main {
    background-color: #F6EFEF;
    color: #262424;
    padding: 15px;
    overflow:auto;
}
.rside {
    background-color:#D72021;
    color:#F6EFEF;
    padding: 15px;
    max-height:800px;
    overflow:auto;
}
.foot {
    background-color:#D72021;
    color: #F6EFEF;
    border-radius:0 0 3px 3px;
    padding: 10px;
    text-align: center;
}
/* TEXT */
h1 {
    font: 2em Staatliches;
    text-align: center;
}
h2 {
    font: 1.8em Staatliches;
    text-align: center;
    color: #262424;
}
p {
    font: 1em Do Hyeon;
    letter-spacing: 2px;
    text-align: left;
}
.foot p {
    font: 0.75em Do Hyeon;
}
.foot a {
    font: 0.75em Do Hyeon;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    color: white;
}
/* NAV BAR */
a.bloop:link, a.bloop:visited {
    padding: 15px;
    margin: 10px 0px;
    background-color: #EE7676;
    border: 5px solid #D72021;
    border-radius: 3px;
    min-width: 100px;
    display:block;
    transition-duration: 0.5s;
    /* text */
    font-family: Staatliches;
    text-decoration: none;
    color: #F6EFEF;
    text-align: center;
}
a.bloop:hover, a.bloop:active {
    padding: 15px;
    margin: 10px 0px;
    background-color: #D72021;
    border: 5px solid #D72021;
    border-radius: 3px;
    min-width: 100px;
    display:block;
    transition-duration: 0.5s;
    /* text */
    font-family: Staatliches;
    text-decoration: none;
    color: #c5bfbf;
    text-align: center;
}
/* LIST GROUP */
ul.lGroup {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li.lGroup {
    border: 2px solid #262424;
    margin-top: 5px;
    background-color: #ac1a1a;
    padding: 12px;
    border-radius: 3px;
    font-family: Do Hyeon;
}
li.lGroup .badge {
    background-color:#EE7676;
    border: 2px solid #680B0B;
    border-radius:3px;
    color:#262424;
}
/* IMAGES */
.sticky {
    position: sticky;
    top: 0;
}
/*ALBUM CARDS*/
.card {
    padding: 10px 0 0 0;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    background-color:#ddd7d7;
    font-size:0.8em;
    min-height:20vw;
    margin:5px;
}
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    background-color:#cbcccf;
}
.cardContainer {
    padding: 2px 16px;
}
a.albumLink:link, a.albumLink:visited {
    transition-duration: 0.5s;
    /* text */
    font-family: Staatliches;
    text-decoration: none;
    color: #F6EFEF;
    text-align: center;
}
a.albumLink:hover, a.albumLink:active {
    transition-duration: 0.5s;
    /* text */
    font-family: Staatliches;
    text-decoration: none;
    font-weight:bold;
    color: #ddd7d7;
    text-align: center;
}