  
/* ----- fonts and body ----- */
@font-face {
    font-family: "Cantarell";
    src: url("/~elysia/storage/fonts/Cantarell-VF.otf");
}
body {
    
    background-position:top;
    background-color: rgb(234, 124, 159);
    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;
    cursor: url("cursor.gif"), default;
    background-image: url("heart.png");
}


: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%;
       
    }
}
@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__item {
    font-size: 18px;
}
.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: 10px 10px 10px 10px;
}
@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(171, 120, 87); /* more orange also pretty!*/
    background-color: #fffff1; /* add border image to make it look scrumpled paper!*/
    border-radius: 3px;
    font-size: 24px;
    font-weight: 500;
    border: 7px solid #4F101F;
    border-image: url("crumpledpaper4.png") 20 30 17 30/ 18px / 16px round;
}


h2 {
    color: rgb(224, 57, 97);
    text-decoration: underline 7px;
    text-underline-offset: 8px;
}
h3 {
    color: #fcfcc6;
    background: -moz-linear-gradient(left, #ffb2da 0%, #ffb2da 70%, #ffb2da00 100%);
    text-shadow: #9e3e47 2px 2px 5px;
    border-bottom: 5px #4F101F;
    border-left: 5px  #4F101F;
    padding: 2px 5px 6px 15px;
    text-decoration: underline 3px #4F101F;
    text-underline-offset: 10px;
    margin-top: 50px;
}
.opening_picture {
    display: flex;
}
.header_holder {
    width: 10%;
}


/* ----- stats ----- */
.lens_stats {
    list-style-type: none;
    color: #ffb2da;
}
.lens_stats::before {
    content: "stats";
}
.lens_stats__list {

}
.lens_stats__topic {
    color: #d7d3f5;
}
#stat__aperture {

}
#stat__modelname {

}
#stat__fullframeequiv {
    
}
#stat__year {
    content: "";
}
#stat__mount {

}



/* ----- text ----- */






/* ----- pictures ----- */
.picture__holder {
    width: fit-content;
    height: fit-content;
    max-width: 26%;
    border: 10px dashed #fef084; 
}
.soft_friendpic {
    width: auto;
    max-width: 100%;
}

@keyframes silly_rotate {
    0% {
        rotate: 10deg;
    }
    50% {
        rotate: -5deg;
    }
}
@keyframes silly_rotate_circle {
    0% {
        rotate: 27deg;
    }
    50% {
        rotate: 190deg
    }
    
}
.pic__silly__caption {
    background: azure;
    color: #0b8023;
    padding-left: 10px;
}

#pic__silly__right {
    float: right;
    margin-right: 7%;
    animation: 7s silly_rotate infinite step-end;
    

}
#pic__silly__left {
    float: left;
    margin-right: 7%;
    animation: 7s silly_rotate infinite step-end;
}
#pic__silly__right__rotate {
    float: right;
    animation: 10s silly_rotate_circle infinite alternate;
}



#pic__rainbow__left {
    float: left;
}


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