/* 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." */
body {
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzAbQQWmkHvS2Xw4-VXAMdMrr2VztgjU7FgQsqGBFaMg&s');
  background-repeat: repeat;
  background-size: 100px;
  color: black;
  font-family: Verdana;
}
div {
  background-color: #00FFB9;
  padding: 1px;
  text-align: center;
}
.box-container {
    border: 2px solid ; /* Border around the container */
    padding: 20px; /* Padding inside the container */
    display: inline-block; /* Make the container shrink-to-fit its content */
    background-color: black;
    color: white;
}
.fixstuff a{
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  float:left;
}
.fixstuff a:hover {
  background-color: #00FFB9;
}


