html{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

:root {
    /* Assign variables here */
    --min-page-width: 800px;
    --min-page-height: 400px;
    --nav-bar1-height: 80px;
    --nav-bar2-width: 100px;
    --section-height: 650px;
}

/* HORIZONTAL NAV BAR */

.nav-bar1{
    z-index: 1;
    position: fixed;
    width: 100%;
    min-width: var(--min-page-width);
    
    height: var(--nav-bar1-height);
    top: 0px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: quasimoda, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    
    
}

.home-nav {
    background: none;
    width: 20%;
    display: block;
    float: left;
}

.home-nav img{
    height: var(--nav-bar1-height);
    padding-top: 15px;
    padding-left: 15px;
}

.nav-bar1 li {
    float: right;
    padding-right: 50px;
}
.links1 {
    
}

.nav-bar1 li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 24px;
    height: 30px;
    padding-top:18px; 
    padding-bottom:32px; 
}

li a:hover {
    /*-webkit-animation: fadein-main 0.5s;
    opacity: 0.5;*/
    font-style: italic;
}

.nav-bar1-accent{
    float: right;
    height: var(--nav-bar1-height);
    width:15px;
    height: 50px;
    padding: 15 20 15 0;
}
.nav-bar1-inner{
    float: right;
    background:black;
    height: var(--nav-bar1-height);
    width:15px;
    height: 50px;
}

/* VERTICAL NAV BAR */
.nav-bar2-container{
    position: fixed;
    background: none;
    width: var(--nav-bar2-width);
    min-height: var(--min-page-height);
}
.nav-bar2{
    padding-top: var(--nav-bar1-height);
    min-height: var(--min-page-height);
    height: 600px;
    list-style-type: none;
    margin: 0;
    font-family: quasimoda, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding-left:10px;
    
    
}
.nav-bar2 li {
    float: right;
    padding-top: 40px;
    
}

.nav-bar2 li a {
    position: absolute;
    left: 50%;
    text-align: center;
    text-decoration: none;
    color: black;
    font-size: 18px;
    height: 25px;
    padding: 25 0 25 0;
    transform:  translateX(-50%) translateY(-50%) rotate(-90deg);
}

.contents-link {
    top: 270px;
}

.authors-link {
    top: 370px;
}

.nav-bar2 h3 {
    line-height: 0px;
    font-size: 20;
    font-size: 17px;
    
}
.nav-bar2-accent{
    height: 70px;
    padding-left: 24px;
    padding-top: 75px;
}

.nav-bar2-inner{
    background:black;
    height: 5px;
    width: 40px;
}

/* BODY */
body{
    margin: 0px;
    width: 100%;
    font-family: quasimoda;
}

/* COVER SECTION */
.cover-container{
    min-width: 800px;
    height: var(--section-height);
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-placeholder {
    height: 100px;
    position: sticky;
    top: 0;
}
#issue1 {
    background: rgb(200,200,200);
}
#issue1 > .nav-placeholder {
    background: rgb(200,200,200);
}
#issue2 {
    background: white;
}
#issue2 > .nav-placeholder {
    background: white;
    
}
#issue3 {
    background: rgb(255,155,155);
}
#issue3 > .nav-placeholder {
    background: rgb(255,155,155);
    
}
.cover{
    height: var(--section-height);
    background: none;
}

.cover-text{
    display: block;
    float:left;
    margin-left:2.5%;
    width: 50%;
    max-height: 70%;
    overflow-y: auto;
    text-align: center;
}

.cover-text::-webkit-scrollbar {
    width: 0px; 
    background: transparent;
}

.cover-text h1{
    font-size: 120px;
    line-height: 0;
    padding-bottom: 15px;
    
}
.cover-text h2{
    font-family: quasimoda;
    font-size: 35px;
    font-weight: 100;
    line-height: 12px;
    margin-top: 50px;
    
}
.cover-text a {
    text-decoration: none;
    color: black;
}
.cover-text a:hover{
text-decoration: underline;
}
.cover-text h2{
    font-family: quasimoda;
    font-size: 18px;
    font-weight: 100;
    line-height: 12px;
    margin-top: 25px;
    
}

.cover-text h3{
    font-family: quasimoda;
    font-size: 20px;
    font-weight: 100;
    line-height: 10px;
    margin-top: 10px;
    
}
.cover-text h4, h6{
    font-family: quasimoda;
    font-size: 20px;
    font-weight: 100;
    line-height: 12px;
    margin: 0;
    margin-top: 15px;
    
}
.cover-text h5{
    font-family: adobe-handwriting-frank, sans-serif;
    font-size: 70px;
    line-height: 12px;
    margin:0;
    position: relative;
    bottom: 30px;
    left: 120px;
    color: rgb(255, 80,235);
    /*color: rgb(235, 235,0);*/
    letter-spacing: -1.5px;
}
.cover-text h6 {
    margin-top: 26px;
}


.cover-image {
    display: block;
    float: left;
    width: 25%;
    height: 450px;
    margin-bottom: 100px;
    margin-left: 15%;
    border: 2px solid black;
}
.cover-image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

