* {
    box-sizing: border-box;
}
body{
    font-family: ms ui gothic;
    color: #444;
    background-color: #e8e5e1;
}
main{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    height: fit-content;
    padding: 0 3rem;
}
header{
    width: 30vw;
    position: fixed;
    margin: -2.3rem 0 0 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    column-gap: 1rem;
}
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-stretch: condensed;
    margin: 0;
    padding: 0;
}
.wrap {
    display: flex;
    
}
figure {
    margin: 0;
    display: flex;
    border: 1px solid #333;
    width: 22rem;
    height: 18rem;
    overflow: clip;
    transition: 300ms all;
}
figure img {
    width: 6rem;
    height: 18rem;
    object-fit: cover;
    border-right:  1px solid #333;

}
figure figcaption {
    height: 100%;
    overflow: clip;
}
figcaption h2 {
    font-size: 1rem;
    margin: 0;
    border-bottom: 1px #444 dotted;
    padding: .5rem;
}
figcaption p {
    margin: 0;
    height: 16rem;
    overflow: scroll;
    padding: .6rem;
}
small{
    display: inline-block;
    margin: .8rem 0 0 0;
    font-weight: 800;
    font-style: italic;
}

figcaption a{
    color: #d46c2b;
    text-decoration-style: dotted;
}
figcaption a:hover{
    letter-spacing: -1px;
}
figcaption a:active{
    color: white;
}
figcaption a.fav{
    background-color: rgba(135, 108, 86, 0.9);
    color: #fff0ba;
}

::-webkit-scrollbar{
    display: none;
}