/*
BLACK   #241E21
DARK    #4D5051
    20% SHADE #6c0f30
MED     #C26984
LIGHT   #EDBBC5
WHITE   #E7D8D8
    10% SHADE #d8ded8
    20% SHADE #c0c6c0
*/

/*FONTS*/
.mansalva-regular {
  font-family: "Mansalva", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.jua-regular {
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* BOXES */
.body {
    background-color: #9b546a;
    background-image: url("https://www.transparenttextures.com/patterns/notebook-dark.png");
    padding: 5%;
}
.head {
    background-color:#4D5051;
    color: #E7D8D8;
    border-radius: 20px 20px 0 0;
    padding: 20px;
}
.side { 
    background-color: #C26984;
    color: #E7D8D8;
    padding: 15px;
    align-items: center;
}
.main {
    background-color: #E7D8D8;
    color: #241E21;
    padding: 15px;
}
.rside {
    background-color:#4D5051;
    color:#E7D8D8;
    padding: 15px;
    overflow: auto;
}
.foot {
    background-color:#4D5051;
    color: #E7D8D8;
    border-radius:0 0 20px 20px;
    padding: 10px;
    text-align: center;
}
/* TEXT */
h1 {
    font: 2em Mansalva;
    text-align: center;
}
h2 {
    font: 1.8em Mansalva;
    text-align: center;
    color: #241E21;
}
p {
    font: 1em Jua;
    letter-spacing: 2px;
    text-align: left;
}
.foot p {
    font: 0.75em Jua;
}
.foot a {
    font: 0.75em Jua;
    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: #EDBBC5;
    border: 5px solid #4D5051;
    border-radius: 20px;
    min-width: 100px;
    display:block;
    transition-duration: 0.5s;
    /* text */
    font-family: Mansalva;
    text-decoration: none;
    color: #241E21;
    text-align: center;
}
a.bloop:hover, a.bloop:active {
    padding: 15px;
    margin: 10px 0px;
    background-color: #4D5051;
    border: 5px solid #4D5051;
    border-radius: 20px;
    min-width: 100px;
    display:block;
    transition-duration: 0.5s;
    /* text */
    font-family: Mansalva;
    text-decoration: none;
    color: #241E21;
    text-align: center;
}
/* LIST GROUP */
ul.lGroup {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li.lGroup {
  border: 2px solid #241E21;
  margin-top: 5px;
  background-color: #6c0f30;
  padding: 12px;
  border-radius: 20px;
}
/* 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:#d8ded8;
    font-size:0.8em;
    min-height:20vw;
}
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    background-color:#d0c2c2;
}
.cardContainer {
    padding: 2px 16px;
}
a.albumLink:link, a.albumLink:visited {
    transition-duration: 0.5s;
    /* text */
    font-family: Jua;
    text-decoration: none;
    color: #241E21;
    text-align: center;
}
a.albumLink:hover, a.albumLink:active {
    transition-duration: 0.5s;
    /* text */
    font-family: Jua;
    text-decoration: none;
    font-weight:bold;
    color: #241E21;
    text-align: center;
}