/* 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." */
:root{
  --marquee-width: 1498px;
}

@font-face{
  font-family: SourceCodePro;
  src: url('../fonts/w95fa.woff');
}

@font-face{
  font-family: Montserrat-Light;
  src: url('../fonts/Montserrat-Light.ttf');
}

body {
  font-family: Courier New;
  background-image: url("images/wallpaper/HomeWallpaper.png");
  background-repeat: repeat;
  color: black;
}

.navbarButton {
  display: inline-block;
  border: purple solid 5px;
  margin-top: -5px;
}

.navbarContainer {
  display: inline-block;
  width:200px;
  margin: 5px;
}

.aboutMeContainer {
  display: inline-block;
  vertical-align: top;
  width: 1010px;
  margin-left: 4px;
}

.aboutMeContainer > div {
  border: purple solid 5px;
  background-color: #c66dc9;
  padding: 5px;
  margin-bottom: 10px;
}

.abIcon{
  display: inline-block;
  width: 304px;
  border: 5px grey solid;
  padding: 0px;
  background-color: LightGrey;
}

.abIcon img{
  border: 2px grey solid;
}

.abGrid{
  display: grid;
  padding: 0px;
  grid-template-areas:
    "header header";
  grid-template-columns: 100px 200px;
  font-size:14px;
}

.abHeader{
  grid-area: header;
  text-align: center;
  font-size: 17px;
  width:304px;
}

.abGrid > p{
  margin-top:0px;
  margin-bottom: 0px;
  text-wrap: normal;
}

.centerer > p{
  font-size: 25px;
  display: inline-block;
  width: 600px;
}

.centerer{
  display:flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.centerer > *{
  padding:10px;
  margin:10px;
}