/*
BLACK   #000112
DARK    #3E1211
    20% SHADE #320e0e
MED     #A42020
LIGHT   #8f8888
WHITE   #F2F8F5
    10% SHADE #dadfdd
    20% SHADE #c2c6c4
*/

/*FONTS*/
.Knewave {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}
.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

/* BOXES */
.body {
    background-color: #8f8888;
    background-image: url("https://www.transparenttextures.com/patterns/brick-wall-dark.png");
    padding: 5%;
}
.head {
    background-color:#3E1211;
    color: #F2F8F5;
    border-radius: 5px 5px 0 0;
    padding: 20px;
}
.side { 
    background-color: #A42020;
    color: #F2F8F5;
    padding: 15px;
    align-items: center;
}
.main {
    background-color: #F2F8F5;
    color: #000112;
    padding: 15px;
}
.rside {
    background-color:#3E1211;
    color:#F2F8F5;
    padding: 15px;
    overflow: auto;
}
.foot {
    background-color:#3E1211;
    color: #F2F8F5;
    border-radius:0 0 5px 5px;
    padding: 10px;
    text-align: center;
}
/* TEXT */
h1 {
    font: 2em Knewave;
    text-align: center;
}
h2 {
    font: 1.8em Knewave;
    text-align: center;
    color: #000112;
}
p {
    font: 1em Space Mono;
    letter-spacing: 2px;
    text-align: left;
}
.foot p {
    font: 0.75em Space Mono;
}
.foot a {
    font: 0.75em Space Mono;
    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: #8f8888;
    border: 5px solid #3E1211;
    border-radius: 5px;
    min-width: 100px;
    display:block;
    transition-duration: 0.5s;
    /* text */
    font-family: Knewave;
    text-decoration: none;
    color: white;
    text-align: center;
}
a.bloop:hover, a.bloop:active {
    padding: 15px;
    margin: 10px 0px;
    background-color: #3E1211;
    border: 5px solid #3E1211;
    border-radius: 5px;
    min-width: 100px;
    display:block;
    transition-duration: 0.5s;
    /* text */
    font-family: Knewave;
    text-decoration: none;
    color: white;
    text-align: center;
}
/* LIST GROUP */
ul.lGroup {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

li.lGroup {
  border: 1px solid #000112; /* Add a thin border to each list item */
  margin-top: -1px; /* Prevent double borders */
  background-color: #320e0e; /* Add a grey background color */
  padding: 12px; /* Add some padding */
}
/* 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:#dadfdd;
    font-size:0.8em;
    min-height:20vw;
}
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    background-color:#c2c6c4;
}
.cardContainer {
    padding: 2px 16px;
}
a.albumLink:link, a.albumLink:visited {
    transition-duration: 0.5s;
    /* text */
    font-family: Space Mono;
    text-decoration: none;
    color: #000112;
    text-align: center;
}
a.albumLink:hover, a.albumLink:active {
    transition-duration: 0.5s;
    /* text */
    font-family: Space Mono;
    text-decoration: none;
    font-weight:bold;
    color: #000112;
    text-align: center;
}