  @import url("https://use.typekit.net/nkr3agw.css");
  
:root {
    --dark: black;
    --light: white;
    --accent: #f2a400;
    --reset: 1px;

    @media (prefers-color-scheme: light) {
        --dark: white;
        --light: black;
        --accent: #f2a400;

    }
}

body {
    background-color: var(--dark);
    color: var(--accent);
    font-family: 'adobe-garamond-pro';
    text-align: left;
    font-size: 17px;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--light);
    margin: var(--reset);
    padding: var(--reset);
    line-height: 1;
}

p {
    margin: var(--reset);
    padding: var(--reset);
    line-height: 1;
}

a,
a:visited {
    text-decoration: none;
    color: var(--light);
      transition: all .5s ease-in-out;
}

a:hover {
  color: var(--acent);
  letter-spacing: 2px;
  transition: all .5s ease-in-out;
}
ul,
li {
    display: inline-block;
}

.wrapper {
    width: 550px;
    height: 550px;
    padding: 5px;
    position: absolute;
    margin-top: 75px;
    margin-left: 100px;
}

.container {
    position: absolute;
    background-color: var(--dark);
    border: 3px solid var(--accent);
    padding: 10px;
    width: 450px;
    height: 450px;
}

#content {
    height: 400px;
    overflow: auto;
    padding: 5px;
    -ms-overflow-style: none;
  scrollbar-width: none;
}

.pagedoll {
    position: absolute;
    height: 170px;
    bottom: 5px;
    right: 0px;
    z-index: 1;
    animation: float 5s ease-in-out infinite;

}

@keyframes float {
    0% {
        transform: translatey(-30px);
    }

    50% {
        transform: translatey(-60px);
    }

    100% {
        transform: translatey(-30px);
    }
}

.scroll {
    height: 270px;
    overflow: auto;
}

summary {
    font-size: 1.2rem;
}

#links {
    position: absolute;
    text-align: left;
    left: -25px;
    bottom: 0px;
    font-size: 1.3rem;
}

img {
    filter: saturate(0%);
}

.buttons img:hover {
  filter: saturate(100%);
}