body, html {
  background-color: #2C5279;
  font-size: 16px;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}
.vk {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vk img {
  /* border: 1px solid #2C5279; */
  /* border-radius: 20px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

nav {
  background-color: #2C5279;
  /* background-color: #f00; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1000;
}
nav .nav-link {
  display: inline-block;
  padding: 10px 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
nav a {
  text-decoration: none;
  color: #fff;
}

.privacy,
.imprint {
  background-color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px;
  font-size: 1rem;
  /* overflow: scroll; */
}
.privacy a,
.imprint a {
  color: #2C5279;
}