body {
  background-color: #ffe9e9;
  color: #000;
  font-family: "Reddit Sans";
}

.mainframe {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 100px auto;
}

.leftside {
  flex-direction: column;
}

.nav {
	background-color: #fff;
  width: 150px;
  height: 155px;
  margin: 0 60px;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  font-size: 12px;
  border: solid 1px transparent;
  border-image-source: url(https://champanoy.neocities.org/fcb2.png);
  border-image-slice: 46 59;
  border-image-width: 30px;
  border-image-outset: 18px 11px;
  border-image-repeat: round;
}

.navlink {
  margin: 10px;
  border: solid 1px #e0e0e0;
  border-radius: 15px;
  display: block;
  background-color: #fff;
  padding: 5px;
}

.nav a {
  color: #000;
  text-decoration: none;
}

.nav a:visited {
  color: #000;
}

.nav a:hover {
  color: #ff8080;
}

.nav a:active {
  color: red;
}

.navlink img {
  display: none;
}

.navlink:hover img {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 31px;
  height: 25px;
}

.updates {
	background-color: #fff;
  width: 150px;
  font-size: 12px;
  margin: 60px;
  padding: 10px;
  border-radius: 15px;
  display: inline-block;
  overflow: hidden;
  border: solid 1px transparent;
  border-image-source: url(https://champanoy.neocities.org/fcb2.png);
  border-image-slice: 46 59;
  border-image-width: 30px;
  border-image-outset: 18px 11px;
  border-image-repeat: round;
}

.updates p {
  padding: 0 0 0 10px; 
}

.updates li {
  padding: 0 5px 0 0;
}

.scroll1 {
  height: 155px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.rightside {
	flex-direction: row;
}

.content {
	background-color: #fff;
  width: 700px;
  font-size: 14px;
  padding: 10px;
  border-radius: 15px;
  display: inline-block;
  overflow: hidden;
  border: solid 1px transparent;
  border-image-source: url(https://champanoy.neocities.org/fcb2.png);
  border-image-slice: 46 59;
  border-image-width: 30px;
  border-image-outset: 18px 11px;
  border-image-repeat: round;
}

.content p {
  padding: 0 20px 10px 20px;
}

.scroll2 {
  height: 392px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.content a {
  color: #ff8080;
}

.content a:visited {
  color: #ff8080;
}

.content a:hover {
  color: red;
}

.content a:active {
  color: red;
}

.content h2 {
  font-family: "Allura";
  font-size: 30px;
  padding: 0 0 0 20px;
}

.row * {
  box-sizing: border-box;
}

.lcol {
  width: 50%;
  padding: 0 10px 0 0;
  float: left;
}

.rcol {
  width: 50%;
  padding: 0 10px 0 0;
  float: right;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.reddit-sans-<uniquifier> {
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.allura-regular {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-serif-lao-<uniquifier> {
  font-family: "Noto Serif Lao", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

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

::-webkit-scrollbar-track {
  border: solid 1px #e0e0e0;
  border-radius: 15px;
}
 
::-webkit-scrollbar-thumb {
  background: #fffddd;
  border: solid 1px #e0e0e0;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #fffcd0; 
}