html {
  background-color: #FFFDF4;
}

.toptitle {
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  color: white;
  background-color: #EF4D66;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 24px;
  margin-top: 0px;
  align-content: center;
}

.MiziSua {
  display: inline-block;
  position: fixed;
  width: 180px;
  bottom: 0px;
  right: 300px;
}

.toptitle-color {
  position: fixed;
  left: 0px;
  right: 0px;
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 5px;
  border: solid;
  border-color: #4F4F4F;
  background-color: #4F4F4F;
  color: #4F4F4F;
}

/*Container*/
.parent_container {
  border: solid gray;
  margin-top: 15px;
}

.container_class {
  --gap: 10px;
  --num-cols: 12;
  --row-height: 10px;
  
  box-sizing: border-box;
  padding: var(--gap);
  border: solid gray;
  margin-left: 100px;
  margin-right: 0px;
  margin-top: 60px;
  display: inline-block;
  max-width: 805px;
  
  display: grid;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}

.container_class > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container_class > div {
    width: 100%;
    height: 100%;
}

.fandom_side_bar {
  display: inline-block;
  border: solid gray;
  float: right;
}

.updates_container {
  border: solid gray;
  overflow: auto;
  width: 100%;
  height: 100%;
}

/*Container-end*/

.headerimage {
  max-width: 771.67px;
  max-height: 510.667px;
  border: double;
  border-width: 5px;
}

.picture {
  border: double gray;
  border-width: 5px;
  
}

.image-grid-row-1 {
  grid-row: span 11;
}

.image-grid-column-1 {
  grid-column: span 12;
}

.image-grid-row-2 {
  grid-row: span 12;
}

.image-grid-column-2 {
  grid-column: span 4;
}

/*Buttons*/

.button-grid-row-1 {
  grid-row: span 2;
}

.button-grid-column-1 {
  grid-column: span 8;
}
  
.update-grid-row-1 {
  grid-row: span 10;
}

.update-grid-column-1 {
  grid-column: span 4;
}

.tab_buttons {
  display: inline-block;
  width: 100%;
  height: 100%;
  align-content: center;
}

.home_button, .aboutme_button, .art_button, .blog_button, .bookshelf_button {
  font-size: 20px;
  padding-left: 18px;
  padding-right: 18px;
}

.home_button, .aboutme_button, .art_button, .blog_button, .bookshelf_button:hover {
  cursor: pointer;
}








