body {
    font-family: Arial, sans-serif;
    background-color: #20232a; /* Dunkles Blau */
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    color: #61dafb; /* Hellblau */
  }
  
  .container {
    background-color: #282c34; /* Dunkles Blau */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .copyright,
  p {
    margin: 5px;
    color: rgb(221, 219, 216);
    float: left;
  }
  
  .footer {
    background-color: #282c34; /* Dunkles Blau */
    border-radius: 8px;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
  }
  
  .ppimg {
    border-radius: 100%;
    border: 10px solid #282c34;
    height: 250px;
    width: 250px;
    color: #007bff;
  }
  
  .profilpicture {
    margin: 0 auto;
    padding: 20px;
    position: absolute;
    top: 35%;
    left: 15%;
    -ms-transform: translate(-35%, -15%);
    transform: translate(-35%, -15%);
    color: #007bff;
  }
  
  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    margin: 10px;
  }
  
  .social-link a {
    text-decoration: none;
    display: block;
    background-color: #007bff; /* Hellblau */
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.2s;
    width: 121px;
  }
  
  .social-link a:hover {
    background-color: #b93006bb; /*#0056b3; /* Dunkleres Blau */
  }

  .facebook a:hover {
    background-color: #3b5998;
  }
  
  .instagram a:hover {
    background-color: #e1306c;
  }

  .twitch a:hover {
    background-color: #9146ff;
  }

  .twitter a:hover {
    background-color: #14171a;
  }

  .youtube a:hover {
    background-color: #ff0000;
  }

  .uhrzeit,
  .time {
    color: rgb(221, 219, 216);
    float: right;
  }
  
  .icon {
    margin-right: 10px;
    font-size: 24px;
  }
  
  /* Media Query für mobile Geräte */
  @media screen and (max-width: 600px) {
    .container {
      max-width: 410px;
    }
    .copyright {
      display: flex;
      flex-direction: column;
      align-items: center;
      float: none;
    }
    .footer {
      text-align: center;
    }
    .uhrzeit {
      display: none;
    }
  }
  
  @media screen and (max-width: 950px) {
    .profilpicture {
      display: none;
    }
  }
  
  @media screen and (max-width: 1110px) {
    .ppimg {
      border: 5px solid #282c34;
      height: 150px;
      width: 150px;
    }
  }