body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: "Times New Roman", serif;
  background-color: #ffffff;
  background-image: linear-gradient(45deg, #ffffff 47.22%, #e6e6e6 47.22%, #e6e6e6 50%, #ffffff 50%, #ffffff 97.22%, #e6e6e6 97.22%, #e6e6e6 100%);
  background-size: 25.46px 25.46px;
  color: black;
}

h1,
h2 {
  color: #0091ea;
  font-weight: normal;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 18px;
}

a {
  text-decoration: underline;
  color: #bf0095;
  transition: 0.2s;
  display: inline-block;
  cursor: pointer;
}

p {
  font-family: sans-serif;
}

header {
  padding-top: 30px;
  width: 100%;
  background-color: #e9f4fd;
  background-image: linear-gradient(#ffffff, #7bd7e6);
  box-shadow: 0px 0px 100px 100px #7bd7e6;
  color: #371db8;
  text-align: center;
}

header h1,
header h2 {
  font-family: "trash hand", serif;
  color: black;
  font-size: 62px;
  margin: 0px;
}

#header-inner {
  display: flex;
}

#header-inner div {
  margin: 0px 80px 20px 80px;
}

#header-inner div:nth-of-type(1) {
  flex: 2;
  text-align: left;
}

#header-inner div:nth-of-type(1) h1 {
  color: #e7ad59;
}

#header-inner div:nth-of-type(2) {
  flex: 1;
  text-align: right;
  padding-right: 20px;
  position: relative;
}

#header-inner div:nth-of-type(2) h2 {
  color: #864cff;
}

#header-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 24px;
}

footer {
  clear: both;
}

a:hover {
  transform: rotate(3deg);
}

.block-icons a {
  display: inline;
}

.block-icons a:hover {
  transform: none;
}

/* General Class Styles */
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.gray {
  color: gray;
}

.twist {
  transition: 1s;
}

.twist:hover {
  transform: rotate(360deg);
}

.tilt {
  transition: 0.2s;
}

.tilt:hover {
  transform: rotate(3deg);
}

/* General ID Styles */
#plot {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

#plot p {
  font-family: sans-serif;
}

#plot h1,
#plot h2 {
  font-weight: bolder;
  text-shadow: none;
}

#plot-inner {
  width: 90%;
  margin: 0 auto;
  padding: 30px 30px 100px 30px;
}

/* +++ IDs +++ */

#search-top,
#search-end {
  color: black;
  font-size: 1.5em;
  text-align: center;
}

#search-top {
  padding: 0 0 30px 0;
}

#search-end {
  padding: 30px 0 0 0;
  clear: both;
}

#widgets p {
  margin: 0px;
}

#widgets input {
  height: 35px;
  margin: 2px;
  display: inline-block;
}

#widgets textarea {
  height: 20px;
  margin-top: 5px;
  resize: none;
  display: inline-block;
}

/* +++ Mobile +++ */

@media (max-width: 1100px) {
  #plot-inner {
    width: 90%;
    padding: 30px 0 100px 0;
  }
}

@media (max-width: 850px) {
  #header-inner div {
    margin-left: 40px;
    margin-right: 40px;
  }

  #header-inner div:nth-of-type(2) {
    display: none;
  }
}
