@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --color-a: #1d1f2a;
    --color-a2: #282c30;
    --color-b: #c53d7a;
    --color-c: #899598;
    --text-font-a: 'Poppins', sans-serif;
}

*{
}

body{
    background-color: var(--color-a);
    max-height: 100vh;
    height: 100vh;
}

main{
    max-height: 100vh;
    height: 95vh;
}

footer{
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.header{
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    border-bottom: 1px solid;
}

.header h1{
    color: var(--color-b);
}

.header a{
    font-size: 10pt;
    text-decoration: none;
    color: var(--color-c);
    border-bottom: 0.5px dotted var(--color-c);
}

.container{
    font-family: var(--text-font-a);
}

.popular-now{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.popular-now-title{
    color: var(--color-b);
    font-style: italic;
    border-bottom: 0.5px solid var(--color-b);
    padding: 10px 0;
}

.popular-now-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 200px;
}

.popular-now-content-box{
    height: 150px;
    width: 35%;
    border-radius: 8px;
    background-image: url(../images/reborn.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.novels{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.novels-box{
    height: 100px;
    width: 100%;
    margin: 10px 0;
    padding: 0 10px;
    border-radius: 8px;
    background-color: var(--color-a2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row
}

.novels-box-info{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-height: 80px;
    max-width: 75%;
}

.novels-box-image{
    height: 80px;
    width: 60px;
    border-radius: 8px;
    background-image: url(../images/reborn.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.novels-box-info-title{
    color: #fff;
    font-weight: 200;
}

.tag{
    width: 50px;
    font-size: 8pt;
    background-color: var(--color-b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.chapter-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 95vh;
}

.chapter-navigation{
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

.chapter-navigation-title{
    color: #fff;
    font-size: 10pt;
}

.chapter-name{
    font-style: italic;
    color: var(--color-b);
    font-weight: 700;
}

.chapter-wrapper{
    padding: 20px 30px 0;
    background-color: #2a2d3d;
    width: 90%;
    height: 90vh;
    border-radius: 8px;
}

.chapter{
    height: 50px;
    background-color: var(--color-a);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
}

.chapter h1{
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}


@media only screen 
   and (min-width : 1200px) {
   /* Styles here */

   main{
    padding: 0 200px;
   }

   .popular-now-content{
    height: 250px;
   }

   .popular-now-content-box{
    height: 200px;
    width: 15%;
   }

   .novels-box{
    width: 40%;
   }

   .novels-box-image{
    width: 20%;
   }
}