@font-face {
    font-family: "Hanson";
    src: url(Fonts/Hanson-Bold.otf);
}

@font-face {
    font-family: "Comfortaa";
    src: url(Fonts/Comfortaa-Regular.ttf);
}

a {
    color: inherit;
    text-decoration: inherit;
}

#about-title {
    font-family: 'hanson', sans-serif;
    color: #007C9E;
    font-size: 248px;
    margin-top: -80px;
}

.about-body {
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    margin-top: -180px;
    line-height: 1.8em;
}

body {
    padding: 100px 10%;
}

#index-body {
    background-color: #007C9E
}

#read-body {
    background-color: #ffffff;
}

#main {
    color: #007C9E;
    display: grid;
    grid-template-columns: .10fr 1fr .05fr;
    column-gap: 25px;

    .index {
        color: #ffffff;
    }
}

#menu {
    position: sticky;
    top: 100px;
    height: 100vh;
    display: grid;
    grid-template-rows: 50px 40px 40px 40px;
    row-gap: 20px;
    font-family: 'Comfortaa', sans-serif;
    font-size: 24px;
}

.menu-item {
    margin-top: 30px;
}

.selected span {
    border-bottom: 2px solid #007C9E;
}

.index .selected span {
    border-bottom: 2px solid #ffffff;
}

#air-logo {
    font-family: 'Hanson', sans-serif;
    font-size: 50px;

}

.frame {
    /* max-height: 80vh; */
    max-width: 90%;
}

.frame-index {
    max-width: 80%;
    max-height: 90vh;
    margin-top: -50px;
}

.frame-end {
    /* max-height: 80vh; */
    max-width: 80%;
}

#strip {
    text-align: center;
}

.frame-box {
    display: inline-block;
    margin-bottom: 40px;
}

#currently-reading-overlay {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: aqua; */
}

#currently-reading {
    background-color: #007C9E;
    width: 50%;
    position: fixed;
    right: 10%;
    height: 700px;
    padding: 25px;
}

#currently-reading-loading-bar {
    width: 30%;
    height: 50px;
    background-color: #ffffff;
    margin-left: 5%;
    margin-top: 5%;
}

.currently-reading-text {
    font-family: 'hanson', sans-serif;
    color: #ffffff;
    position: absolute;
    bottom: 25px;
}

#currently-reading-text-1 {
    font-size: 28px;
    margin-left: 30px;
}

#currently-reading-text-2 {
    font-size: 180px;
}

#info-box {
    font-family: 'hanson', sans-serif;
    font-size: 36px;
    position: sticky;
    top: 110px;
    height: 100vh;
}

#info:hover {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #main {
        color: #007C9E;
        display: grid;
        grid-template-columns: .05fr 1fr;
        column-gap: 25px;
    }

    #info-box {
        display: none;
    }

    #menu {
        top: 100px;
        height: 100vh;
        display: grid;
        grid-template-rows: 50px 40px 40px 40px;
        row-gap: 10px;
        font-family: 'Comfortaa', sans-serif;
        font-size: 20px;
    }

    #about-title {
        font-family: 'hanson', sans-serif;
        color: #007C9E;
        font-size: 48px;
        margin-top: 0px;
    }

    .about-body {
        font-family: 'Comfortaa', sans-serif;
        font-size: 18px;
        margin-top: 0px;
        line-height: 1.8em;
    }

    .menu-item {
        margin-top: 10px;
    }

    .frame-index {
        max-width: 120%;
    }

    #air-logo {
        font-family: 'Hanson', sans-serif;
        font-size: 36px;
    }

    #currently-reading {
        visibility: hidden;
    }

}