body {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  color: #333333;
  background-color: #333333;
  background-image: url("/images/bookmarks/bg.png");
	scrollbar-color: #eecc88 #333;
}
main {
  max-height: 95vh;
  width: 60vw;
  overflow-y: auto;
  margin: 10px;
  border-style: solid;
  border-width: 5px;
  border-color: #3355bb;
  background-color: #dddddd;
  box-shadow: 3px 3px rgba(238,221,170,1);
}
#links {
  flex-direction: column;
  flex-basis: 15%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 30px;
}
#links a {
  margin: 10px;
  padding: 5px;
  border-style: solid;
  border-width: 5px;
  border-color: #2233cc;
  background-color: #dddddd;
  color: #333333;
  font-size: 1.5em;
  box-shadow: 3px 3px #eecc88;
  display: block;
  text-decoration: none;
}
a {
  color: #444488;
  }
p {
  margin: 2em;
}
#decorations {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#decorations img {
  max-width: 20vw;
}
h1 {
  padding-left: 6%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 3em;
  background-color: #3355bb;
  color: #dddddd;
}
h2 {
  padding-left: 7%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 2em;
  background-color: #3355bb;
  color: #dddddd;
}
h3 {
  padding-left: 8%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.5em;
  background-color: #3355bb;
  color: #dddddd;
}
table, td {
  border: 5px solid;
  border-color: #444488;
  border-collapse: collapse;
}
td {
  padding: 1em;
}
td:first-child {
  width: 33.33%;
}
table {
  width: 98%;
  margin: auto;
  margin-bottom: 1%;
}
@media screen and (max-width: 1000px) {
  body {
    flex-direction: column;
    align-items: center;
    overflow: auto;
  }
  #links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    align-content: space-around;
  }
  #links a{
    display: inline-block;
  }
  main {
    min-width: 90vw;
    margin: auto;
  }
}
