
/* CSS STYLE STARTS HERE */
html, body {
  margin: 0;
  padding: 0;
}

.header {
  display: flex;
  height: 130px;
  width: 100%;
  justify-content: center;
  background: #4a0090;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: #4a0090;
}

.mainbody {
  flex-direction: column;
  height: auto;
  background: #778d9a;
  background-image: url("https://isohels.neocities.org/assets/rain.gif");
  background-repeat: round;
  align-items: center;
}

.buttonstrip {
  display: block;
  text-align: center;
  height: 50px;
  width: 100%;
  background: #b19eff;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: #4a0090;
}

.textbody {
  background: #c6d4ff;
  min-height: 700px;
  height: auto;
  padding: 25px 100px;  
  width: 50%;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: #4a0090;
  border-right-width: 4px;
  border-right-style: solid;
  border-right-color: #4a0090;
  font-size: 20px;
  font-family: Arial;
}

.item {
  color: #6f0e00;
  text-decoration: none;
  text-align: center;
}

.item:hover {
  font-weight: bold;
}

.button {
  background: white;
  position: relative;
  text-decoration: none;
  bottom: 1px;
  padding: 8px 32px;
  border-radius: 12px;
  border-width: 4px;
  border-style: solid;
  border-color: #4a0090;
  text-align: center;
  display: inline-block;
  font-size: 24px;
}

.currentbutton {
  background: #91acff;
  cursor: default;
}

.button:hover {
  background: #c7ffeb;
}

.currentbutton:hover {
  background: #91acff;
}

.name {
  position: relative;
  padding: 10px 25px;
  bottom: 50px;
}

.title {
  position: relative;
  padding: 10px 25px;
}
/* END CSS STYLES */