/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
  
  body {
    background-image: url('https://cc.dreamrise-comic.com/uploads/1664873390-bg1.png');
    background-repeat: repeat;
    font-family: "Open sans", sans-serif;
    padding:0;
    margin:0;
    box-sizing: border-box;    
    color: rgb(85, 170, 238);
    scrollbar-color: yellow black;
  }
  img {
    max-width: 100%;
  }

  a{ /*text of the top menu*/
    color:rgb(255, 70, 193);
  }
  #wrapper {
    background: rgb(0, 0, 0);
    border-radius: 10px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-top:10px;
    max-width: 1050px;
  }
  #content {
    padding: 30px;
  }
  #header {
    text-align: center;
    padding: 0px;
    width: 100%;
    box-sizing: border-box;
  }
  .site-title{
      text-align:center;
      font-weight:bold;
      display:block;
  }
  a.site-title {
      text-decoration:none;
      color:rgb(137, 226, 241);
  }
  #topmenu {
    background:url('https://dreamrise-comic.com/assets/images/main_menu3.png');
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    width: 37.5rem;
    max-width: 100%;
    height: 5.563rem;
  }

  #menu a {
    text-decoration: none;
  }
  #menu {
    margin-left: 75px;
    margin-right: 75px;
    text-align: center;
    background: rgb(12, 7, 24);
    display: block;
    padding:0;
    justify-content: center;
  }
  #menu div {
    position: relative;
  }
  #menu a {
    padding: 3px;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 1em;
    cursor: pointer;
  }
  #menu a:hover{
    background-color:rgb(255, 36, 145)
  }

  a {
    color: rgb(126, 255, 126);
  }
  a:hover{
    color:rgb(255, 36, 145)
  }

  #comic-area{
    margin-bottom:20px;
    text-align:center;
  }
  #text-area{
    padding-left: 25px;
    padding-right: 25px;
  }
  .cc-nav{
      max-width:600px;
      margin: 0 auto;
      padding:20px;
      display:flex;
  }
  .cc-nav a, .cc-nav div{
      margin:0 10px;
      display:block;
      background-size: contain;
      background-repeat: no-repeat;
      background-position-y: center;
      width:100%;
  }
  .cc-nav a{
      opacity:.7;
  }
  .cc-nav a:before, .cc-nav div:before{
      content:'';
      display:block;
      padding-bottom:calc((4/5) * 100%);
  }
  .cc-nav a:hover{
      opacity:1;
      filter: grayscale(0);
  }
  .cc-first, .cc-first-dis{
      background-image:url('images/nav/NavFirst.png');
      max-height: 40px;
  }
  .cc-prev, .cc-prev-dis{
      background-image:url('images/nav/NavBack.png');
      max-height: 40px;
  }
  .cc-next,.cc-next-dis{
      background-image:url('images/nav/NavNext.png');
      max-height: 40px;
  }
  .cc-last,.cc-last-dis{
      background-image:url('images/nav/NavLatest.png');
      max-height: 40px;
  }
  .cc-navaux{
      background-image:url('images/nav/NavCenter.png');
      max-height: 40px;
      
  }
  .cc-nav div{
      filter: grayscale(1);
      opacity:.3;
  }
  #cc-comicbody{
    text-align:center;
    width:100%;
  }

  #bottomarea{
    width:100%;
    margin: auto;
    margin-top: 15px;
    display:flex;
    border-radius: 10px;
  }

  #leftside{
    float:left; 
    margin: 10px;
    min-width: 200px;
    padding: 10px;
    display:block;
    background-color: #0c0718;
    border-radius: 6px;
    }

  @media (max-width: 1050px) {

    #menu{
      margin-left: 5%;
      margin-right: 5%;
    }
  }
  
  @media (max-width: 775px) {
    #content{
      padding-left: 0px;
      padding-right: 0px;
    }
    #leftside{
    display:none;
      }
    #comicadia-banner{
      display:none;
    }
  }

  #right-side{ 
    background-color: #0c0d0e;
    margin: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
  }


  #cc-footer{
    bottom:0px;
    text-align:center;
    padding:5px;
    font-size:.8em;
  }