body {
    font-family: "Trebuchet MS", sans-serif;
    letter-spacing: 1px;

    animation: slideIn  ease forwards 3s;
    background-color: rgb(255, 255, 255);
  }

.datenschutz {
    padding-top: 120px;


    min-height: 100vh;
    font-size: 14px;
    background-image: linear-gradient(
      300deg,
      rgb(245, 245, 245),
      rgb(255, 255, 255)
    );

  }
  
h1 {
    font-weight: 300;
    font-size: 30px;
  }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60px;
    background-color: rgb(20, 20, 20);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    font-family: "Arial", sans-serif;
  }
  
header.scrolled {
    height: 40px;
    box-shadow: 0px 5px 10px rgb(114, 114, 114);
    border-bottom: none;
  }
  
header .logo {
    color: white;
    font-weight: 300;
    font-size: 3em;
    text-decoration: none;
    transition: 0.5s;
  }
  
header .logo.scrolled {
    font-size: 2em;
  }
  
header .logo span {
    font-weight: 600;
  }