/* 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." */
@font-face {
  font-family: 'HWYGOTH';
  src: url(/fonts/HWYGOTH.TTF);
  }
@font-face {
  font-family: 'HWYGEXPD';
  src: url(/fonts/HWYGEXPD.TTF);
  }
body {
  background-color: black;
  color: red;
  font-family: "HWYGOTH","HWYGEXPD";
  font-size: 20px;
}
a {
  color: red;
  font-weight: bold;
}

::selection {
  color:red;
  background:black;  
  }
::-moz-selection {
  color: red;
  background: black;
  }

.title {
  font-family: "HWYGEXPD";
  font-size: 30px;
}

.title h1 {
  margin: 5px;
}

.center {
display: flex;
justify-content: center;
align-items: center;
}
.width60{
  width: 60%;
}
.row{
  display: flex;
}
.column {
  flex:50%
}

.boybox {
  color: white;
  background-color: #1f1f1f;
  border: 6px solid red;
  border-radius: 12px;
  padding: 15px;
  }
  
.boybox::selection {
  color: red;
  background: black;
  }
.boybox::-moz-selection {
  color: red;
  background: black;
  }