/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

a:link { color: #5bb0fb; }
a:visited { color: #de4ff7; }
a:hover { color: #c9c9c9; }
a:active { color: #36eee9; }

body {
  background-color: #1f1f1f;
  color: white;
  font-family: "Georgia", serif;

}

h1 {
  position: relative;
  text-align: center;
}

h2 {
  position: relative;
  text-align: center;
}

h5 {
  position: relative;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}   

.boxitem {
    background-color: black;
    padding: 8px;
    border: 2px dotted white;
    margin: 15px;
}

.boxold {
    box-sizing: border-box;
    background-color: rgba(19, 23, 31, 0.9);
    border: 8px;
    border-style: outset;
    border-color: rgba(27, 30, 35, 0.9);
    padding: 8px;
    scrollbar-color: #baaac1 #484848;
}

.parent {
    position: absolute;
    left: 50%;
    transform: translate(-50%);

    height: 1200px;
    width: 1500px;
    margin: 10px;
}

.parent .title {
    position: relative;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    text-align: center;
    width: 400px;
    height: 60px;
}

.parent .column {
    display: flex;
    background-color: black;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    width: 1500px;
}

.column .favorites {
    position: absolute;
    top: 16px;
    height: 280px;
    width: 800px;
    overflow-y: auto;
}

.column .wants {
    position: absolute;
    top: 16px;
    height: 280px;
    width: 390px;
    right: 290px;
    overflow-y: auto;
}

.column .navi {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 280px;
    width: 250px;
    overflow-y: auto;
}

.parent .log {
    position: absolute;
    top: 470px;
    box-sizing: border-box;
    height: 440px;
    width: 820px;
    padding: 20px;
    overflow-y: auto;
}

.parent .boarding {
    position: absolute;
    top: 470px;
    width: 640px;
    right: 15px;
}
.parent .links {
     color: gray;
     position: absolute;
     bottom: 240px;
     left: 50%;
     transform: translate(-50%);
}

.parent .ribbons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.parent .neolink {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, -50%);
}