.container.wrap {
  padding: 0;
}

.header {
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
}

.header > .logo {
  background: #005A91;
  padding: 16px;
}

.center {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}

.center > a {
  background: none;
  color: #005A91;
  visibility: hidden;
  font-size: 15px;
  position: relative;
}
.center > a::before {
  background: none;
  color: #005A91;
  content: 'Administration';
  visibility: visible;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  background: #eaeaea;
  position: absolute;
}

.home-options {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  gap: 8px;
}

.home-options > a {
  color: #005a91;
  text-decoration: none;
  display: block;
  padding: 8px;
  border: 2px solid #005A91;
}

.home-options > a:hover {
  background: #fbfbfb;
}