/* 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: specialElite;
  src: url(SpecialElite.ttf);
}

body {
  background-color: black;
  color: black;
  font-family: specialElite;
}

.content {
  background-color: #92865A;
  border: solid black 5px;
}

.navbar {
  background-image: url(images/background.jpeg);
}

.navbar .title {
  border: solid black 5px;
  text-align: center;
  font-size: 50px;
  text-shadow:
    3px 3px 0 #fff,
    -3px 3px 0 #fff,
    -3px -3px 0 #fff,
    3px -3px 0 #fff;
}

.navbar ul {
  border: solid black 5px;
  font-size: 25px;
  font-weight: bold;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #92865A;
}

.navbar ul li a {
  display: block;
  color: black;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar ul li a:hover {
  background-color: #111111;
}

.imgContainer{
    float:left;
    background-color: #92865A;
}