@font-face {
  font-family: "Cambo";
  src: url("../fonts/Cambo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html,
body {
  background: #fff;
  z-index: 1;
  font-family: "Cambo";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  display: flex;
  flex-direction: column;
}

.header {
  font-size: 30px;
  padding: 10px;
  font-family: "Cambo";
}

h2 {
  padding: 4px;
}

.image {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  height: auto;
}

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 6px;
  border-radius: 20px;
  font-size: 18px;
  background-color: rgb(255, 255, 255);
}

.datenschutz {
  width: 60vw;
  padding: 20px;
}

.links {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  text-align: right;
  background: white;
  z-index: 1000;
}

.links a {
  text-decoration: none;
  color: black;
}

a,
button,
input,
label {
  cursor: pointer;
  text-decoration: none !important;
  color: black;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .links {
    position: relative;
    top: auto;
    right: auto;
    text-align: left;
    padding: 10px;
  }
  .datenschutz {
    width: 95vw;
  }
}
