/* 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." */


/* fonts! */
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');


/* general website stuff! */

body {
  height:100px;
  color: #fcf5ff;
  background-image:url("/assets/placeholdbg.gif");
  font-family: VT323 !important;
  font-size: 18px;
  padding:10px;
  max-width: 1080px;
  justify-content: center;
  margin: auto;
  display:block;
}


/* class for hr */
.dot {
  display:block;
  border-width:2px;
  border-style:dotted;
}


h1 {
  color:#f8c7ff;
}

h2 {
  color:#ff91ff;
}

html {
  cursor:url("/assets/cursor.png"), auto;
}

a {
  color:#bb39f7;
  text-decoration: underline dotted;
  transition: color 0.1s;
}

a:hover { 
  cursor:url("/assets/pointer.png"), auto;
  color:#f36dfc;
}

/* div class to put the whole thing in the nice gradient page thingy */

.pagecontainer {
    display:block;
}

.navbar {
    background: repeating-linear-gradient(45deg, rgba(14,2,36,0.99), rgba(14,2,36,0.99) 40px, rgba(33,10,70,0.99) 40px, rgba(33,10,70,0.99) 80px);
    justify-content:center;
    text-align:center;
    padding-top:5px;
    padding-bottom:5px;
    height:10%;
    width:100%;
}

.navbar>a {
  color:#fff;
  text-decoration: underline dotted;
  transition: color 0.1s;
}

.navbar>a:hover {
  color:#e7c2ff;
  text-decoration: underline dotted;
  transition: color 0.1s;
}

.page {
  justify-content: center;
  display: flex;
  margin: auto;
  padding: 20px;
  background: rgb(63,0,82);
  background: linear-gradient(0deg, rgba(63,0,82,1) 0%, rgba(18,0,56,1) 100%);
}


/* index stuff */
/* main page header */

header {
  background-image:url("/assets/header2.png");
  height:275px;
}

/* container left + middle */

.container-main {
    width:75%;
}

/* links */

.container-right {
    width:25%;
    margin-left: 10px;
    background-image:url("/assets/stars1.gif");
    position:relative;
}

.logs {
  overflow-y: scroll;
  display: block;
  max-height:437px;
}

/* footer for pages */

footer {
  background-image:url("/assets/bg5.gif");
  padding: 15px;
  justify-content:center;
  text-align:center;
  vertical-align:middle;
}


.face-reveal {
  display:block;
  max-height:200px;
  Position: absolute;
  Bottom: 0;
}


.column {
  float:left;
  width: 50%;
  padding: 5px;
  display:block;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}