@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  src: url(media/vt323.regular.woff2) format('woff2'),
       url(media/vt323.regular.woff) format('woff'),
       url(media/vt323.regular.ttf) format('truetype');

}
* {
  box-sizing: border-box;
}
body {
  background: white;
  color: #FFC000;
  font-family: 'VT323';
  font-size: 24px;
  -webkit-font-smoothing: none;
  line-height: 1.2;
}
button  {
  font-size: 1.2rem;
  font-family: inherit;
  background: #130e01;
  border-color: inherit;
  border-radius: 8px;
  color: inherit;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  border-style: dashed;
  text-align: center;
  border-radius:20px;
}
p {
  margin-bottom: 2rem;
  font-size: 1.4em;
}
a,
a:visited {
  border-bottom: 0.2rem solid;
  color: inherit;
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  background-color: #FFC000 ;
  color: #031e11;
}
.piece {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.frame {
  background-color: transparent;
  border-radius: 20px;
  border: 20px solid;
  border-bottom-color: #121212;
  border-left-color: #080808;
  border-right-color: #080808;
  border-top-color: #020202;
  box-shadow: inset 0 0 20px black,
    inset 0 0 3rem black,
    0 0 10rem black;
  height: 96%;
  position: absolute;
  top: 2%;
  left: 2%;
  width: 96%;
  pointer-events: none;
}

.output {
  background-color: #000;
  overflow: scroll;
  position: absolute;
  padding: 30px 20px;
  pointer-events: auto;
  /* padding:40px; */
  z-index: -1;
}
.scanlines {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.6));
    background-size: 100vh 0.2rem;
  border-radius: 2rem;
  position: fixed;
  pointer-events: none; 
}
.glow {
  background: radial-gradient(circle at center, #ffb300 0%, rgba(255, 179, 0, 0.88) 58%, rgba(255, 221, 51, 0.57) 80%, rgba(153, 114, 15, 0.27) 93%, rgba(10, 23, 12, 0) 100%);
  opacity: 0.1;
  pointer-events: none;
  position: fixed;
}
header {
  background-color: black;
  font-size:2em;
  margin-bottom: 14px;
}

nav ul {
  font-size: 0.8em;
  background-color: black;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  list-style-type: none;
}

nav li {
  margin: 10px;
}

nav a:hover {
  color: #000;
  background-color: #FFC000;
  cursor: pointer;
}

#menu-icon {
  color: #FFC000;
  cursor: pointer;
  display: none;
  font-size: 1.75em;
  text-decoration: none;
}

#toggle-menu {
  display: none;
}

@media screen and (max-width: 850px) {
  nav {
    display: none;
    width: 100%;
    text-align: center;
  }

  #menu-icon {
    visibility: visible;
    display: block;
  }

  .menu-icon {
    z-index: 1;
    visibility: visible;
  }

  #toggle-menu:checked ~ nav {
    display: block;
  }

  nav ul {
    flex-direction: column; 
  }

  nav li {
    margin: 5px 0;
  }
}

::selection { 
  color: #000;
  background-color:#FFC000;
}
.main {
padding-left: 10vw;
padding-right: 10vw;
}
article{
  display: block;
  border-bottom: solid;
}
.col-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.col {
  width: 100%;
  font-size: smaller;
  border: solid;
  overflow-y: scroll;
  padding: 1rem;
  margin:0.5rem;
  height: 75vh;
}

@media (min-width: 1200px) {
  .col-container {
    flex-direction: row;
  }

  .col {
    width: 45%;
  }
}
  .comment-section {
            margin: 0 auto;
            padding: 20px;
            border-radius: 8px;
            height: 50%;
        }
        .comment {
            margin-bottom: 20px;
            padding: 10px;
            border-bottom: 1px solid;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        .comment-author {
            font-weight: bold;
        }
        .comment-date {
            color: #FFC000;
        }
        .comment-body {
            margin-top: 5px;
        }
.comment-astro{
font-weight: bold;
border:4px solid #ffb300;
}
.comment-maker {
  width: 100%;
  height: 50%;
}
button{
  cursor: pointer;
}
/* for projects page */
.column {
  float: left;
  width: 45%;
  padding: 0.75em;
  }

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 90%;
    display: block;
    margin-bottom: 20px;
  }
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
 text-align: center;
 background-color: #0f0f0f;
}

.card img{
  object-fit: contain;
  max-width: 80%;
  max-height: 50%;
}

/* Clear floats after the columns, thanks to https://www.w3schools.com/howto/howto_css_cards.asp */
.row:after {
  content: "";
  display: table;
  clear: both;
}

footer{
  text-align: center;
  font-size: small;
}

footer p{
  margin-bottom:0em;
}