<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Website Layout</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>

/*---------------------- Basic Shit ----------------------*/

/* Custom Fonts */
@font-face {
  font-family:"HeaderText"; /*a name to be used later*/
  src: url("fonts/Early GameBoy.ttf"); /*URL to font*/
}

@font-face {
  font-family:"Text2"; /*a name to be used later*/
  src: url("fonts/PixelOperator.ttf"); /*URL to font*/
}

* {
  box-sizing: border-box;
}

/* Main Stylings */
body {
  margin: 0;
  height: 100%;
  color: #efb700;
  font-size: 20px;
  /*font-family: "Text2";*/
  font-family: "MS PGothic", sans-serif !important;
  background-color: black;
  overflow-y: scroll;
  line-height: 1.3;
}

.bgs {
  /* The image used */
  background-image: url("images/landingpage/bg.gif");
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  image-rendering: optimizeSpeed
   /* IE, only works on <img> tags */
   -ms-interpolation-mode: nearest-neighbor;
   /* Firefox */
   image-rendering: crisp-edges;
   /* Chromium + Safari */
   image-rendering: pixelated;
}


/* Aligns things to center*/
.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

/* Main content */
.main {
  margin-top: 2%; /* Add a top margin to avoid content overlay */
}


/* IDK if this had any use and at this point I am too afraid to try */
element {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbars */
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #efb700; black;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #efb700;
}

*::-webkit-scrollbar-thumb {
  background-color: #efb700;
  border: 3px solid black;
}

/*---------------------- Text/Content Specific ----------------------*/

/* Styles the banner to be EXTRA crispy */
.banner {
  image-rendering: optimizeSpeed
   /* IE, only works on <img> tags */
   -ms-interpolation-mode: nearest-neighbor;
   /* Firefox */
   image-rendering: crisp-edges;
   /* Chromium + Safari */
   image-rendering: pixelated;
}

/* Color of Links */
a {
  color: #ef6000;
}

/* Add a card effect for articles */
.card {
  padding: 20px 40px 20px 40px;
  /*background-color: black;*/
  
}

/* Add a larger box for the smaller box */
.box-body{
  margin: 5px;
 /* background-color: black;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Houses the buttons in a manner that is neato */
.box{
  margin: 5px;
background-color: black;
float: left;
}

/* small font */
.small {
  font-size: 14px;
}




</style>
</head>
</html> 









