html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

@font-face { 
    font-family: "ace attorney"; 
    src: url('https://dl.dropboxusercontent.com/s/cn9tv867o5q0n1k/Ace-Attorney.ttf?dl=0');
}

body {
    background-image: url(t01.gif);
    height: 100dvh;
    overflow: hidden;
    margin-top: 5%;
    position: absolute;
    font-family: ms gothic;
    font-size: 14px;
}

.stack {
  display: grid;
  justify-self: center;
  align-self: center;
}

.stack > * {
  grid-area: 1 / 1;
}

.contentbox {
    background-image: url(box.jpg);
    opacity: 70%;
    background-repeat: no-repeat;
    background-size: cover;
    height:  416px;
    width: 670px;
    margin-top: 12px;
    margin-left: 12px;
    justify-self: center;
    align-self: center;
    display: grid;
    grid-template: 
    "left right"
    "left right"
    "footer footer";
    grid-template-columns: 1fr 2fr;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.left {
    border: 1px double #e5a400;
    grid-area: left;
    margin: 20px;
    margin-right: -10px;
    padding: 20px;
    overflow: scroll;
    overflow-x: hidden;
    justify-content: center;
}

.right {
    border: 1px double #e5a400;
    grid-area: right;
    margin: 20px;
    padding: 20px;
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
      width: 0;
      background: transparent;
    }

.lil {
    height: fit-content;
    align-items: center;
    padding: 18px;
    text-justify: center;
}

.webrings {
    border: 1px dotted #e5a400;
    height: 150px;
    align-content: center;
    justify-content: center;
    padding: 18px;
    overflow: scroll;
    overflow-x: hidden;
}

 a:link {
    color: #8a6d24; 
}

 a:hover {
    color: #e5a400; 
}

a:visited {
    color: rgb(61, 56, 7);
}

.end {
    height: fit-content;
    align-items: center;
    padding: 20px;
    margin-right: -5px;
}

footer {
    font-size: 18px;
    font-family: "ace attorney";
    font-weight: bold;
    position: absolute;
    justify-self: center;
    background-color: rgba(0, 0, 0, 0.2);
}

li {
    margin-left: -25px;
    margin-right: -5px;
}

blockquote {
    background-color: rgba(0, 0, 0, 0.19);
    height: fit-content;
    width: fit-content;
    margin-left: -2px;
    margin-right: -2px;
}
textarea {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px dotted #8a6d24;
    margin-left: -10px;
}

table {
	border-collapse: collapse;
}

th, td {
    padding: 6px 12px;
    vertical-align: top;
}