@charset "utf-8";

/*
    Author: kumie
    Date: 7/11/2025

    Filename: coverMain.css
    Stylesheet for the DAIL main covers page

*/


/* ==============================================================
 *  Width for...uh I don't know? Really big monitors I guess @__@
 * ==============================================================
 */

@media (min-width: 3000px) {
  #header {
    display: block;
    background-image: url("https://dail.zaxon.zone/comic/TheBoyz8.png");
    background-color:rgba(55,46,150,0.95);
    border-radius:50px;
    background-repeat: no-repeat;
    background-size: auto 500px;
    height: 500px;
    margin: 0px  auto  0px  auto;
    max-width: 1800px;
  }
  
  #header a img {
    height: 100%;
    float: right;  
  }
  
  body {
    font-size:20px;
    background: #372E96 url("/comic/MuyVirusPattern.png") left top repeat;
    background-size: 30%;
    background-color: #372E96;  
    font-family: "Baskervville SC", serif;
    font-weight:bold;
  }

  nav {
    display:block;
    color:#130932;
    background-image: linear-gradient(rgba(255,74,109,1), rgba(55,46,150,0.85));
    max-width: 1800px;
    margin: 0px  auto  0px  auto;
    height: 80px;
    border: 2px inset #FF4A6D;
  }

  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    margin: 0 20px 0 20px;
  }

  nav ul li {
    width: 200px;
    height: 80px;
    margin-left: 0;
  }

  nav ul li a {
    text-decoration: none;
    display: block;
    color: white;
    font-size: 50px;
    text-align: center;
    height: 70px;
    padding-top: 10px;
  }

  nav ul li:hover {
    background-image: linear-gradient(rgba(255,74,109,0.85), rgba(55,46,150,1));
  }

  nav ul li a:hover {
    color:#130932;
  }
  
  button {
    font-family: "Baskervville SC", serif;
    padding:5px;
    width:300px;
    background-color:#E53148;
    color:white;
    box-shadow: 0 9px #999;
    font-size:30px;
  }
  
  button:hover {
    background-color:#EE3451;
      
  }
  
  button:active {
    box-shadow: 0 5px #666;
    -ms-transform: translate(-1%, -1%);
    transform: translate(-1%, -1%);
    background-color: #CD1B41;
  }
  
  #lala {
    position: relative;
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 100%;
  }
  
  #slideshows {
    position: relative;
    display: block;
    margin: auto;
    max-width: 1200px;
    width: 80%;
  }
  
  .Seasons {
    display: block;
    margin: auto;
    padding-top: 10px;
  }
  
  #Season2 {
    display:none;
  }
  
  .Covers1, .Covers2 {
    display: none;
    max-width: 1200px;
    object-fit: cover;
    margin: auto;
  }
  
  #slideshows .Seasons .covers img {
    display: block;
    margin: auto;
    max-height: 850px;
    max-width: 100%;
    width: auto;
    margin-top: 15px;
  }
  
  #slideshows .Seasons .covers button {
    display: block;
    margin: 20px auto 10px auto;
    height: 60px;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: #CD1B41;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0px;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a grey background color */
  .prev:hover, .next:hover {
    background-color: #E53148;
    color: white;
  }

  footer {
    font-size: 60px;
    background-image: linear-gradient(rgba(55,46,150,0.5), rgba(55,46,150,0.95));
    border-radius:10px;
    display:block;
    padding: 10px;
    text-align: center;
    margin: 50px  auto  25px  auto;
    max-width: 1920px;
    color:white;
    text-shadow:3px 0px #E53148, 4px -1px #573DD7;
  } 
}

/* ========================
 *  Width for most laptops
 * ========================
 *
 */

@media (max-width: 3000px) and (min-width: 999px) { 
  #header {
    display: block;
    background-image: url("https://dail.zaxon.zone/comic/TheBoyz8.png");
    background-color:rgba(55,46,150,0.95);
    border-radius:50px;
    background-repeat: no-repeat;
    background-size: auto 200px;
    height: 200px;
    margin: 0px  auto  0px  auto;
    max-width: 1000px;
  }
  
  #header a img {
    height: 100%;
    float: right;  
  }
  
  body {
    font-size:20px;
    background: #372E96 url("/comic/MuyVirusPattern.png") left top repeat;
    background-size: 40%;
    background-color: #372E96;  
    font-family: "Baskervville SC", serif;
    font-weight:bold;
  }

  nav {
    display:block;
    color:#130932;
    background-image: linear-gradient(rgba(255,74,109,1), rgba(55,46,150,0.85));
    max-width: 1000px;
    margin: 0px  auto  0px  auto;
    height: 50px;
    border: 2px inset #FF4A6D;
  }

  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    margin: 0 20px 0 20px;
  }

  nav ul li {
    width: 200px;
    height: 50px;
    margin-left: 0;
  }

  nav ul li a {
    text-decoration: none;
    display: block;
    color: white;
    text-align: center;
    height: 50px;
    padding-top: 10px;
  }

  nav ul li:hover {
    background-image: linear-gradient(rgba(255,74,109,0.85), rgba(55,46,150,1));
  }

  nav ul li a:hover {
    color:#130932;
  }
  
  button {
    font-family: "Baskervville SC", serif;
    padding:5px;
    width:200px;
    background-color:#E53148;
    color:white;
    box-shadow: 0 9px #999;
    font-size:20px;
  }
  
  button:hover {
    background-color:#EE3451;
      
  }
  
  button:active {
    box-shadow: 0 5px #666;
    -ms-transform: translate(-1%, -1%);
    transform: translate(-1%, -1%);
    background-color: #CD1B41;
  }
  
  #lala {
    position: relative;
    display: block;
    margin: auto;
    max-width: 900px;
    width: 100%;
  }
  
  #slideshows {
    position: relative;
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 80%;
  }
  
  .Seasons {
    display: block;
    margin: auto;
    padding-top: 10px;
  }
  
  #Season2 {
    display:none;
  }
  
  .Covers1, .Covers2 {
    display: none;
    max-width: 1000px;
    object-fit: cover;
    margin: auto;
  }
  
  #slideshows .Seasons .covers img {
    display: block;
    margin: auto;
    max-height: 650px;
    max-width: 100%;
    width: auto;
    margin-top: 15px;
  }
  
  #slideshows .Seasons .covers button {
    display: block;
    margin: 20px auto 10px auto;
    height: 50px;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: #CD1B41;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0px;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a grey background color */
  .prev:hover, .next:hover {
    background-color: #E53148;
    color: white;
  }

  footer {
    font-size: 20px;
    background-image: linear-gradient(rgba(55,46,150,0.5), rgba(55,46,150,0.95));
    border-radius:10px;
    display:block;
    height: 40px;
    padding: 10px;
    text-align: center;
    margin: 50px  auto  25px  auto;
    max-width: 1000px;
    color:white;
    text-shadow:3px 0px #E53148, 4px -1px #573DD7;
  }
}


/* =======================================
 *  Width for most iPads and Kindles, etc.
 * =======================================
 */

@media (max-width: 999px) and (min-width: 710px) { 
  #header {
    display: block;
    background-image: url("https://dail.zaxon.zone/comic/TheBoyz8.png");
    background-color:rgba(55,46,150,0.95);
    border-radius:50px;
    background-repeat: no-repeat;
    background-size: auto 200px;
    height: 200px;
    margin: 0px  auto  0px  auto;
    max-width: 900px;
  }
  
  #header a img {
    max-height: 100%;
    float: right;
  }
  
  body {
    font-size:20px;
    background: #372E96 url("/comic/MuyVirusPattern.png") left top repeat;
    background-size: 50%;
    background-color: #372E96;  
    font-family: "Baskervville SC", serif;
    font-weight: bold;
  }

  nav {
    display:block;
    color:white;
    background-image: linear-gradient(rgba(255,74,109,1), rgba(55,46,150,0.85));
    max-width: 900px;
    margin: 0px  auto  0px  auto;
    height: 40px;
    border: 2px inset #FF4A6D;
  }

  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    margin: 0 20px 0 20px;
  }

  nav ul li {
    width: 200px;
    height: 40px;
    margin-left: 0;
  }

  nav ul li a {
    text-decoration: none;
    display: block;
    color: white;
    text-align: center;
    height: 30px;
    padding-top: 10px;
  }

  nav ul li:hover {
    background-image: linear-gradient(rgba(255,74,109,0.85), rgba(55,46,150,1));
  }

  nav ul li a:hover {
    color: #130932;
  }
  
  button {
    font-family: "Baskervville SC", serif;
    padding: 5px;
    width: 200px;
    background-color: #E53148;
    color: white;
    box-shadow: 0 9px #999;
    font-size: 20px;
  }
  
  button:hover {
    background-color:#EE3451;
      
  }
  
  button:active {
    box-shadow: 0 5px #666;
    -ms-transform: translate(-1%, -1%);
    transform: translate(-1%, -1%);
    background-color: #CD1B41;
  }
  
  #lala {
    position: relative;
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 100%;
  }
  
  #slideshows {
    position: relative;
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 80%;
  }
  
  .Seasons {
    display: block;
    margin: auto;
    padding-top: 10px;
  }
  
  #Season2 {
    display: none;
  }
  
  .Covers1, .Covers2 {
    display: none;
    object-fit: cover;
    margin: auto;
  }
  
  #slideshows .Seasons .covers img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 550px;
    width: auto;
    margin-top: 15px;
  }
  
  #slideshows .Seasons .covers button {
    display: block;
    margin: 20px auto 10px auto;
    height: 50px;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: #CD1B41;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0px;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a grey background color */
  .prev:hover, .next:hover {
    background-color: #E53148;
    color: white;
  }

  footer {
    font-size:15px;
    background-image: linear-gradient(rgba(55,46,150,0.5), rgba(55,46,150,0.95));
    border-radius:10px;
    display:block;
    height: 40px;
    padding: 10px;
    text-align: center;
    margin: 50px  auto  25px  auto;
    max-width: 900px;
    color:white;
    text-shadow:3px 0px #E53148, 4px -1px #573DD7;
  } 
  
}


/* =========================================================
 *  CSS for devices width 500px and below (most smartphones)
 * =========================================================
 */


@media (max-width: 710px) {
  #header a img {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 200px;
    height: auto;
    width: auto;
  }
  
  body {
    font-size:20px;
    background: #372E96 url("/comic/MuyVirusPattern.png") left top repeat;
    background-size: 80%;
    background-color: #372E96;  
    font-family: "Baskervville SC", serif;
    font-weight: bold;
  }

  nav {
    display:block;
    color:#130932;
    background-image: linear-gradient(rgba(255,74,109,1), rgba(55,46,150,0.85));
    max-width: 900px;
    margin: 0px  auto  0px  auto;
    border: 2px inset #FF4A6D;
  }

  nav ul {  
    display: grid;
    grid-template-areas: '1 3'
                         '2 4'
                         '5 6';

    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    display: block;
    border: 2px inset #FF4A6D;
    max-width: 200px;
    min-width: 150px;
    height: 30px;
    margin: 5px auto 5px auto;
    
  }

  nav ul li a {
    text-decoration: none;
    display: block;
    color: white;
    text-align: center;
  }

  nav ul li:hover {
    background-image: linear-gradient(rgba(255,74,109,0.85), rgba(55,46,150,1));
  }

  nav ul li a:hover {
    color: #130932;
  }
  
  button {
    font-family: "Baskervville SC", serif;
    padding: 5px;
    width: 200px;
    background-color: #E53148;
    color: white;
    box-shadow: 0 9px #999;
    font-size: 20px;
  }
  
  button:hover {
    background-color:#EE3451;
      
  }
  
  button:active {
    box-shadow: 0 5px #666;
    -ms-transform: translate(-1%, -1%);
    transform: translate(-1%, -1%);
    background-color: #CD1B41;
  }
  
  #lala {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
  }
  
  #slideshows {
    position: relative;
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 100%;
  }
  
  .Seasons {
    display: block;
    margin: auto;
    padding-top: 10px;
  }
  
  #Season2 {
    display: none;
  }
  
  .Covers1, .Covers2 {
    display: none;
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    margin: auto;
  }
  
  #slideshows .Seasons .covers img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 500px;
    height: auto;
    width: auto;
    margin-top: 15px;
  }
  
  #slideshows .Seasons .covers button {
    display: block;
    margin: 20px auto 10px auto;
    height: 50px;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: #CD1B41;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0px;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a grey background color */
  .prev:hover, .next:hover {
    background-color: #E53148;
    color: white;
  }

  footer {
    font-size:15px;
    background-image: linear-gradient(rgba(55,46,150,0.5), rgba(55,46,150,0.95));
    border-radius:10px;
    display:block;
    padding: 10px;
    text-align: center;
    margin: 0  auto  25px  auto;
    max-width: 900px;
    color:white;
    font-size: 15px;
    text-shadow:3px 0px #E53148, 4px -1px #573DD7;
  }  
}

