html,
body {
  margin: 0;
  padding: 0;
  height: 95vh;
  width: 100vw;
  max-width:1024px;
  margin-left:auto;
  margin-right:auto;
  background-color:#3f3f3f;
  color:white;
}

nav {
  background-color:#ffaa00;
  color:white;
  height:40px;
  box-shadow: 5px 6px 10px 2px rgba(0,0,0,0.6);
  }

nav a:link, a:visited, a:active{
  text-decoration: none;
  color:white;
}
  
nav a:hover {
  color:black;
  }

main {
  margin:15px;
  }

.logo-text {
  font-size:25px;
  color:black;
  float:left;
  margin:5px;
  }
  
.nav-links {
float:left;
margin:5px;
  }

.acount-links {
float:right;
margin:5px;
  }

.box {
  box-shadow: 5px 6px 10px 2px rgba(0,0,0,0.6);
  background-color:#ff8000;
  padding:10px;
  }

/*
.top-bords {
  
  }

.newest-posts {
  
  }

.pickd-bords {
  
  }
*/

.post {
  background-color:#ffaa00;
  margin:5px;
  }

.comment {
  background-color:#ffaa00;
  margin:5px;
  box-shadow: 5px 6px 10px 2px rgba(0,0,0,0.6);
  padding:5px;
  }

.post-box {
  background-color:#ffaa00;
  }
  
.post-box:hover {
  background-color:#3f3f3f;
  cursor:pointer;
  
  }

.post-box h3, h6{
  padding:5px;
  display:inline;
  }

/* From Uiverse.io by SelfMadeSystem */ 
.aero-button {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #3d80b1;
  background: #d3ecfb;
  overflow: hidden;
  isolation: isolate;
  transition: 0.05s all;
}

.aero-button::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 50%;
  background: linear-gradient(
    90deg,
    #8bd2f6,
    #a7dbf7 30%,
    #a7dbf7 50%,
    #7bcaf4
  );
  z-index: -1;
  transition: inherit;
}

.aero-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0px 0px 0px 1px #dcf1fc;
  z-index: 1;
  transition: inherit;
}

.inner {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 4px;
  transition: inherit;
}

.inner svg {
  height: 2.4em;
  margin: auto;
  transition: inherit;
}

.aero-button:hover {
  background: #f3feff;
}

.aero-button:hover::before {
  background: linear-gradient(
    90deg,
    #7ae4ff,
    #b7fbfe 30%,
    #b7fbfe 50%,
    #7ae4ff
  );
}

.aero-button:active {
  border: 1px solid #1d415b;
  background: #a9d8f2;
}

.aero-button:active::before {
  background: linear-gradient(
    90deg,
    #6abce8,
    #98d1f0 30%,
    #98d1f0 50%,
    #6abce8
  );
  translate: 1px 1px;
}

.aero-button:active::after {
  box-shadow:
    inset 2px 2px 4px -2px #0007,
    inset -2px 2px 4px -2px #0007;
}

.aero-button:active .inner {
  translate: 1px 1px;
}

.topics a {
  
  }
  
  .topics a:hover {
  color:black;
  }

