body {
    margin: 0;
    background-color: black;
    padding-top: 70px;
}

a {
    margin: 0;
}

.top-bar {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(66, 66, 66);
    border-bottom-style: solid;
    border-color: black;
    border-width: 1px;
    position: fixed;
    top: 0px;    
}

.icon-title {
    /*background-color: lightblue;*/
    display: flex;
    align-items: center;
    max-height: 50px;
    width: 300px;
}

.site-icon {
    max-height: 20px;
    margin-left: 10px;
    opacity: 80%; 
}

.site-icon:hover {
    opacity: 100%;
    transition: all 0.2s ease 0s;
}

.title-text {
    font-family: "hyperspace-race-cap-variable",sans-serif;
    margin-left: 10px;
    color: white;
    margin-bottom: 5px;
    text-decoration: none;
    opacity: 80%;
}

.title-text:hover {
    opacity: 100%;
    transition: all 0.2s ease 0s;
}

.navigation {
    /*background-color: pink;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:200px;
}

.button-nav {
    border-radius: 20%;
    padding: 10px;
    background-color: gray;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    margin-left: 5px;
    margin-right: 5px;
}

.button-nav:hover {
    background-color: white;
    transition: all 0.2s ease 0s;
}

.button-triangle {
    display: block;
    height: auto;
    width: 15px;
}

.button-nav-disabled {
    border-radius: 20%;
    padding: 10px;
    background-color: rgb(82, 82, 82);
    border-style: solid;
    border-color: black;
    border-width: 2px;
    margin-left: 5px;
    margin-right: 5px;
}

.reader-page-select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 5px;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    background-color: lightgray;
    font-family: "hyperspace-race-cap-variable",sans-serif;
}

.reader-page-select option {
    background: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
}

.third-section {
    /*background-color: orange;*/
    width: 300px;
}

.comic-link {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    height: auto;
    max-height: 1483px;
}

.page-display {
    display: block;
    margin-left: auto;
    margin-right: auto;    
    margin-bottom: 200px;
    max-width: 100%;
    height: auto;
    max-height: 1483px;
}

/*CREDITS---------------------------------------------------------*/

.credits-page {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 920px;
    margin: auto;
}

.credits-text {
    padding-top: 50px;
    margin: auto;    
    animation: fadeInAnimation ease 0.75s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

.credits-font {
    color: white;
    font-family: "hyperspace-race-cap-variable",sans-serif;
    margin-top: 0px;
    margin-bottom: 5px;
    text-align:center;
}

.recommendation-title {
    margin-top: 50px;
}

.recommendation-text {
    color: white;
    font-family: "hyperspace-race-cap-variable",sans-serif;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.recommendation-grid {
    padding-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
    margin: auto;
}

.browse-main {    
    max-width: 800px;
    padding: 15px;
}

.browse-thumb-image {
    width: 100%;
}

.recommendation-title-text {
    color: white;;    
    font-family: "hyperspace-race-cap-variable",sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
}

.published-text {
    margin-top: 0px;
    margin-bottom: 15px;
    color: rgb(63, 63, 63);
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
}

.read-button {
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
    background-color: #c03a39;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.read-button:hover {
    background-color:#e24646;
}

.read-button:active {
    background-color: #7e2626;
}

.moreinfo-button {
    display: block;
    width: 100%;
    background-color: lightgray;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.moreinfo-button:hover {
    background-color: rgb(238, 238, 238);
}

.moreinfo-button:active {
    background-color: rgb(143, 143, 143);
}

.read-button-link {
    text-decoration: none;
}

.moreinfo-button-link {
    text-decoration: none;
}

.button-text-read {
    font-family: "hyperspace-race-cap-variable",sans-serif;
    color: white;
    font-size: 16px;
}

.button-text-moreinfo {
    font-family: "hyperspace-race-cap-variable",sans-serif;
    color: black;
}