body {
  background-color: #000000;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  background-image: url("images/carbon.png");
}

.container {
  width: 800px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.links {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.links a {
  float: left;
  display: block;
  color: #f2f2f2;
  font-size: 40px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.links a:hover {
  background-color: #ddd;
  color: black;
}

.gallery {
  width: 800px;
}
.gallery img {
  transition: 1s;
  padding: 15px;
  width: 200px;
}
.gallery img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}

.body {
  background-color: #111111;
  padding-bottom: 15px;
  margin-bottom: 50px;
}
