body {
  background: #1d1b35;
  background: linear-gradient(
    180deg,
    rgb(23, 29, 59) 0%,
    rgb(121, 1, 13) 50%,
    rgba(26, 26, 29, 1) 100%
  );
  background-attachment: fixed;
  font-family: Calibri, sans-serif;
  font-size: 0.9em;
  color: #2e2326;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 70%;
  height: 95vh;
  margin: auto;
}

.main {
  height: 100%;
  flex: 3;
}

.leftside,
.rightside {
  height: 50%;
  flex: 1;
}

.rightside-blog {
  height: 100%;
  flex: 1;
}

.main,
.leftside,
.rightside,
.rightside-blog {
  border: 2px solid #1a1a1d;
  border-radius: 5px;
  border-bottom: 2px solid #1a1a1d;
  margin: 1%;
  background: #ffffff;
  overflow: auto;
}

.main img,
.leftside img,
.rightside img,
.rightside-blog img {
  max-width: 100%;
}

.rightside,
.rightside-blog {
  align-self: flex-end;
}

.inner {
  padding: 2%;
  height: 90%;
  overflow: auto;
}

h1,
h2,
h3,
h4 {
  font-family: monospace;
  font-size: 1.2em;
  background: #440429;
  color: #fff;
  border-bottom: 2px solid #2e2326;
  padding: 1%;
  margin: 0;
}

input {
  border: 0px solid;
  background-color: #ffffff;
}

#leftimg {
  position: absolute;
  width: 330px;
  left: 12%;
  bottom: 0;
  z-index: -1;
}

#rightimg {
  position: absolute;
  width: 330px;
  right: 12%;
  top: 0;
  z-index: -1;
}

header {
  font-size: 2em;
  font-family: monospace;
  border-bottom: 2px dashed #f4acb7;
}

header img {
  float: right;
  width: 50%;
}

.footer {
  font-family: monospace;
  border-top: 2px dashed #f4acb7;
}

a {
  font-family: monospace;
}

a:link,
a:visited {
  color: #cd5e72;
  text-decoration: none;
}

a:hover,
a:active {
  color: #f4acb7;
  text-decoration: underline;
}

ul {
  list-style-image: url("assets/images/elfiepixelsmol.png");
  line-height: 200%;
}

hr {
  width: 90%;
  border-bottom: 2px dashed #f4acb7;
  border-top: none;
}

/*** scrollbar ***/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2e2326;
  border: 1px solid;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f4acb7;
  border: 1px solid;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffcad4;
}

::-webkit-scrollbar-button {
  background: #9d8189;
}

::-webkit-scrollbar-button:hover {
  background: #f4acb7;
}

::-webkit-scrollbar-button:single-button {
  border: 1px solid;
  height: 12px;
}

/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #555555 transparent;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent #777777 transparent;
}
/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 8px 8px 0 8px;
  border-color: #555555 transparent transparent transparent;
}

::-webkit-scrollbar-button:vertical:single-button:increment:hover {
  border-color: #777777 transparent transparent transparent;
}

/*mobile view*/

@media only screen and (max-width: 600px) {
  .wrapper {
    width: 100%;
  }

  .inner {
    overflow: visible;
  }
}
