* {
    font-family: "Space Mono", serif;
    font-size: 16px;
}

#pencil {
    position: fixed;
    width: 600px;
    left: -10%;
    bottom: 20px;
    transform: rotate(70deg);
}

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e4d3bf;
}

.quiz__restart {
    float: right;
    text-decoration: underline;
    cursor: pointer;
}

.quiz__progress {
    margin: 20px 0;
}

.notebook {
    position: relative;
    height: 90%;
    width: 56%;
    max-width: 1280px;
}

.notebook #metal-binder {
    height: 100%;
    width: 80px;
    left: -33px;
    top: 0;
    position: absolute;
    z-index: 13;
}

.page {
    position: absolute;
    width: 93%;
    height: 90%;
    left: 0;
    top: 0;
    padding: 5% 0 5% 7%;
    border-radius: 7px;
    box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.43);
    border: 1px solid #c2c2c2;
    background-color: #f3eadf;
}

.page__content {
    padding: 0 8%;
    overflow-y: scroll;
    max-height: 100%;
}

.page__line {
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #e06a6a;
    top: 0;
    left: 8%;
}

.page__content .bird__photo {
    margin-bottom: 36px;
}

.page__content .bird__photo img {
    cursor: pointer;
}

.page__content .bird__photo__title {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

.page__content .bird__photo__title a {
    font-weight: 400;
}

.page__content img {
    width: 100%;
}

.page__title {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
}

.page__title div:first-child {
    font-family: "Playfair Display", serif;
    color: #2d2d2d;
    font-size: 2.2em;
}

ul li {
    cursor: pointer;
}

ul li:hover {
    text-decoration: underline;
}

li.empty {
    cursor: auto;
    color: #00000042;
    text-decoration: none;
}

.no-dots {
    list-style: none;
    padding-left: 0;
}

.empty img {
    opacity: .5;
}

.hide {
    display: none;
}

#me {
    display: block;
    width: 50%;
    margin-top: 30px;
}

#notities h2 {
    margin-top: 40px;
}

input {
    border: 1px solid #e4d3bf;
    border-radius: 4px;
    padding: 6px 12px;
}

input:active {
    outline: none;
}

input:focus {
    outline: none;
    border: 1px solid #131313;
}

audio {
    margin-top: 14px;
}

.quiz__bird {
    width: 70%;
    margin: 20px 0;
}

.rarity {
    display: inline;
    height: 12px;
    width: 12px !important;
}

@media (max-width: 961px) {
    .notebook {
        width: 100%;
        height: 100%;
    }

    .page {
        height: calc(95% + 3px);
        border-radius: 0;
    }

    #pencil {
        display: none;
    }

    #metal-binder {
        display: none   ;
    }

    .book-marker {
        display: none;
    }

    .quiz__bird {
        width: 100%;
    }
}