  
/* ----- fonts and body ----- */
@font-face {
    font-family: "Cantarell";
    src: url("/~elysia/storage/fonts/Cantarell-VF.otf");
}
body {
    
    background-position:top;
    background-color: rgb(151, 227, 222);
    background-repeat:repeat-y;
    color: rgb(255, 255, 255);
    font-family: "Cantarell", "Nimbus Sans", sans-serif;
    font-size: 22.5px;
    position: relative;
    line-height: 1.45;
    letter-spacing: 0.029em;
    font-weight: 550;
}

:focus {
    outline:4px dashed rgb(241, 234, 234);
}

a {
    color: #efc52d;
    text-decoration: underline 2px rgb(211, 165, 85);
}
a:visited {
    color: #f18826;;
}


/* ----- navigation layout ----- */
.left-nav {
    max-height: 450px;
    align-items: center;
    min-width: 220px;
    margin-right: 22px;
    
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
   
}
@media only screen and (min-width: 880px) {
    .left-nav {
       align-items: start;
       margin-left: 11%;
       margin-top: 3em;
    }
}
@media only screen and (max-width: 880px) {
    .left-nav {
        padding-top: 20px;
        margin: 0px 14%;
    }
}
.left-nav__list {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: end;
    flex-wrap: wrap-reverse;
    margin-bottom: 0px;
}
.left-nav__block {
    background-color: #ffe1d8; 
    border-top: 4px dotted;
    border-bottom: 4px dotted;
    border-color: #ffb2da;
    margin: 2px 5px 0px 4px;
    position: relative;
    /*display: flex; make ribbon appear below text, looking like an ornamental gift or cake*/
    height: 45%;
    border-radius: 5px 5px 0px 0px;
}
@media only screen and (max-width: 880px) {
    .left-nav__block {
        margin-right: 2px;
    }
}

.left-nav__link, .left-nav__link:visited {
    padding: 4px;
    display: block;
    color: #fefeee;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    text-shadow: #9e3e47 0.5px 0.5px 3px;
}
.left-nav__spooky-block {
    background-color:#790628;
    border-top: 4px dotted;
    border-bottom: 4px dotted;
    border-color: #ffb2da;
    margin: 2px 2px 0px 4px;
    position: relative;
    
    transition: background-color 2s, border-top 2s, border-bottom 2s, border-color 2s;
}
.left-nav__spooky-block:hover {
    background-color: black;
    border-top: 4px solid;
    border-bottom: 4px solid;
    border-color: #3EE77B;
}
.left-nav__spooky-link, .left-nav__spooky-link:visited {
    padding: 4px;
    display: block;
    color: #d7d3f5;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    transition: color 2s;
}
.left-nav__spooky-link:hover, .left-nav__spooky-link:visited:hover {
    color: #3EE77B;
}
/*
.left-nav__item:focus {
    outline:4px solid #ff78a3;
}
*/





/* ----- header things ----- */

main {
    max-width: 78%;
    margin: 0px auto;
    padding: 40px 5% 20px 5%;
    color: rgb(132, 69, 89);
    background-color: #f1fffd;
    border-radius: 3px;
    font-size: 24px;
    font-weight: 600;
}


h2 {
    color: rgb(224, 57, 97);
    text-decoration: underline 7px;
    text-underline-offset: 8px;
}
h3 {
    color: #fcfcc6;
    background-color: #ffb2da;
    text-shadow: #9e3e47 2px 2px 5px;
}
.opening_picture {
    display: flex;
}
.header_holder {
    width: 10%;
}


/* ----- pictures ----- */
.picture__holder {
    width: fit-content;
    height: fit-content;
    max-width: 26%;
    border: 10px dashed #fe84a6;
}
.soft_friendpic {
    width: auto;
    height: auto;
    max-width: 100%;
}
#pic__silly__right {
    float: right;
    margin-right: 7%;
    rotate: 10deg;

}


@media only screen and (max-width: 780px) {
    .picture__holder {
        max-width: 46%;
    }
}