.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.container img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 15px;
  align-self: baseline;
}
.container .menu-items {
  width: 100%;
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.container .menu-items a {
  padding: 5px 12px;
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.container .menu-items a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.25);
}