/* 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." */

* {
  box-sizing; border-box;
  font-family: 'Courier New', monospace;
}

header{
  text-align: center;
    img {
      width: 50% ;
      height: auto;
    }
}

body {
  background-color: black;
  background-image: url('https://azzyfree.neocities.org/Assets/StarCRT_frame.png');
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-position: center;
  background-size: cover;
  color: white;
  font-family: Verdana;
  margin: 0 auto;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background-color: #444;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 0px solid #ccc;
}

::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #361254;
border: 1px solid #361254;
}
       
      
/* All containers have this style scrollbar */
div{
  overflow: hidden;
  /*
  scrollbar-color: #aaa transparent;
  scrollbar-width: thin;
  */
}

img.a {
  width: 100%;
  height: auto;
}

ul.a {
  list-style: square ;
  color: #444;
}

.nav{
  background-color: #fff;
  width: 100%;
}

.sidebar {
  background-color: #fff;
  color: #444;
  font-family: Verdana;
  height: 100vh;
  width: auto;
  margin: 0 auto;
  overflow-y: hidden;
}

.row{
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  text-align: center;
  overflow:hidden;
  /* Brute forces a line break */
  /*
  &:: after{
    clear: both;
  }
  */
}


.column{
  min-width: 10px;
  width: fit-content;
  background-color: #444;
  margin: 2px auto; 
}


.main {
      /* global style changes below */
      position: relative;
      border-radius: 20px;
      background-color: #160f1c;
      color: #fff;
      font-family: arial;
      width: 40vw;
      overflow-y: auto;
      margin: 0 auto;

}

hr {
  text-overflow: hidden;
}
        
.scrollbar {
    margin: 0;
    padding: 0;
    width: 16px;
}

button{
  background-color: #361254;
  color: #fff;
  filter: drop-shadow(4px 5px #000);
  border-radius: 10px;
  width: 10em;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
  margin: 2% auto;
  cursor: grab;
}

