:root {
  /* Background Colors: */
  --background-color: #686868;
  --content-background-color: #CA4F58;
  --sidebar-background-color: #ffffff;

  /* Text Colors: */
  --text-color: #e6e6e6;
  --sidebar-text-color: #595959;
  --link-color: #92cd8b;
  --link-color-hover: #1ee739;

  /* Text: */
  --font: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'ＭＳ ゴシック' , 'MS Gothic', 'Noto Sans CJK JP', TakaoPGothic, sans-serif;
  --heading-font: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'ＭＳ ゴシック' , 'MS Gothic', 'Noto Sans CJK JP', TakaoPGothic, sans-serif;
  --font-size: 19px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 24px;
  --border: 4px solid #491314;
  --round-borders: 6px;
  --sidebar-width: 160px;
  --border-width: 5px 10px;
}

body {
    height: 100%;
    background-image: url("https://cherry-mp3.neocities.org/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #821B31
}
    .clear {
		border:0px solid RGBA(0,0,0,1);
    margin-left:auto; 
    margin-right:auto; 
    background-color: RGBA(0,0,0,0); 
     }
    .clearleft {
		border:0px solid RGBA(0,0,0,1);
    margin-left:0; 
    background-color: RGBA(0,0,0,0);
    }  
    .blog {
    text color: #ffffff;
    overflow-y: auto;
    padding: 24px;
    border: 4px solid #491314;
    border-radius: 6px;
    margin-left:auto; 
    margin-right:auto; 
    background-color: #491314; 
     }
    .middle{
    display: block;
    margin-left:auto; 
    margin-right:auto;
    text-align:center;
    }
    .middle2{
    display: block;
    margin-left:auto; 
    margin-right:auto;
    border:2px;
    border-style: solid;
    border-color: white;
    box-shadow: 0px 0px 6px 6px #000000;
    background-color: #821B31;
    }
    
.container {
  position: relative;
}

.image {
  display: block;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: RGBA(20,0,15,.7);
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: black;
  font-size: 19px;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
    
    
a.qwerty:link {
  color: #491314;
}

a.qwerty:visited {
  color: #CA4F58;
}

a.qwerty:hover {
  color: grey;
}

a.qwerty:active {
  color: black;
} 
.table{margin-top:-45px;}

.marquee-hover {
  cursor: pointer;
   animation-play-state: paused;
}

/* -------------------------------------------------------- */
/* ImageE */
/* -------------------------------------------------------- */


.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}
/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  .left-sidebar { 
    display: none;
  }
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}