@font-face{
    font-family: "cinzel";
    src: url("/fonts/Cinzel/static/Cinzel-Bold.ttf");
}

@font-face {
    font-family: "lugrasimo";
    src: url("/fonts/Lugrasimo/Lugrasimo-Regular.ttf");
}
body{
    background-image: url("/img/tabletop.png");
    background-size: 100vw 100vh;
    margin: 0;
}
h1,h2,h3{
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}
h3:hover{
    cursor: pointer;
}
hr{
    margin-top: 0; 
    border: black 1px solid;
}
#lighting{
    position:relative;
    pointer-events: none;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}
#shadow{
    position:absolute;
    pointer-events: none;
    background-color: black;
    mix-blend-mode: multiply;
    opacity: 0.75;
    width: 200%;
    height: 200%;
    position: fixed;
}
#light{
    position: absolute;
    pointer-events: none;
    width: 130vw;
    height: 130vh;
    top: -15vh;
    left: -15vw;
    mix-blend-mode: hard-light;
    opacity: .3;
    animation: flicker 5s alternate infinite;
}
@keyframes flicker{
    0%,100%{transform: skew(0deg,0deg);}
    20% {transform: skew(10deg,2deg);}
    40% {transform: skew(2deg,3deg);}
    50% {transform: skew(7deg,1deg);}
    75% {transform: skew(15deg,5deg);}
}
#content{
    position: absolute;
    display: flex;
    flex-direction: row;
    column-gap: 0rem;
}
#pigeon-files{
    position:absolute;
    transform: rotate(-10deg);
    top:-1vh;
    left:10rem;
}
#pigeon-files:hover{
    transform: rotate(0deg);
    top:-6vh;
}
#book{
    position: relative;
    display: flex;
    justify-content: end;
    padding: 2.5rem;
    padding-left: 8rem;
    margin-top:20vh;
    height: auto;
}
#book-image{
    position:absolute;
    top:0;
    left: -400px;
    width: 1000px;
}
#book-content{
    position: relative;
}
.book-page{
    position: absolute;
    top: 0;
    width: 420px;
    text-align: justify;
    font-family: "lugrasimo";
}

#About-site{
    position: relative;
}
#lightbulb{
    position: absolute; 
    opacity: .5; 
    bottom: 10px; 
    left:7px;
    position: fixed;
}
#ink-quill{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
#feather{
    height: 325px;
    margin-top: 15vh;
    transform: rotate(-10deg);
    margin-left: 2rem;
}
#ink-bottle{
    width: 100px;
    margin: auto;
}
#notepad{
    position: relative;
    overflow-y:visible;
}
#notepad-img{
    position:fixed;
    bottom: -500px;
    width: 400px;
    
    transform: rotate(5deg);
}
#notepad-img:hover{
    animation: slide-up 0.2s linear forwards; 
    cursor: pointer;
}
@keyframes slide-up {
    from{
        transform: rotate(5deg);
    }to{
        transform: rotate(0deg) translateY(-6vh);
    }
}
#candle{
    position:absolute;
    right: 5vw;
    top: 20vh;
    height: 10rem;
    z-index: -1;
}
/*update log*/
#update-log{
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #000000aa;
}
#update-notepad{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 5vh;
    z-index: 1;
}
#update-notepad-img{
    height: 90vh;
    margin: 0 auto;
}
#log-table-container{
    position: absolute;
    top:20vh;
    max-width: 62vh;
}
#log-table{
    border-collapse: collapse;
    width: 23vw;
    font-family: 'lugrasimo';
    font-size: 12px;
}
.log-td-fecha{
    border-bottom: 1px black solid;
    border-right: 1px black solid;
    padding: 0.5rem;
    text-align: center;
}
.log-td-desc{
    border-bottom: 1px black solid;
    padding: 0.5rem;
    text-align: center;
}