/* Allgemeine Stile */

body {

    height: 100vh;

    width: 100%;

    background: linear-gradient(45deg,#d2001a,#7462ff,#f48e21,#23d5ab);

    margin: 0;

    padding: 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    animation: color 12s ease-in-out infinite;

  }



  /* Header-Stile */

  header {

    background-color: #6441A5;

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

  }

  

  .logo {

    font-size: 24px;

    font-weight: bold;

  }



  .logo img {

    border-radius: 10px;

    width: 100%;

    height: auto;

    max-width: 90px;

    max-height: 500px;

    display: block;

    margin: 0 auto;

  }

  

  

  nav ul {

    list-style: none;

    display: flex;

    justify-content: flex-end;

    align-items: center;

  }

  

  nav li {

    margin-left: 20px;

  }

  

  nav a {

    color: #fff;

    text-decoration: none;

    transition: color 0.2s ease-in-out;

  }

  

  nav a:hover {

    color: #F5A623;

  }

  

  .search {

    display: flex;

    justify-content: flex-end;

    align-items: center;

  }

  

  .search input {

    border: none;

    background-color: #F3F3F3;

    padding: 10px;

    margin-right: 10px;

    border-radius: 5px;

  }

  

  .search button {

    background-color: #F5A623;

    color: #fff;

    border: none;

    padding: 10px;

    border-radius: 5px;

    cursor: pointer;

  }



  .search2 button {

    background-color: #F5A623;

    color: #fff;

    border: none;

    padding: 10px;

    border-radius: 5px;

    cursor: pointer;

  }

  

  /* Hauptbereich-Stile */

  main {

    max-width: 1200px;

    margin: 0 auto;

    padding: 20px;

  }

  

  .carousel {

    padding: 0;

  }

  

  .stream-list {

    margin-top: 50px;

  }

  

  .stream-list h2 {

    font-size: 24px;

    font-weight: bold;

    margin-bottom: 10px;

  }

  

  .stream-list ul {

    list-style: none;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    grid-gap: 20px;

  }

  

  .category-list {

    margin-top: 50px;

  }

  

  .category-list h2 {

    font-size: 24px;

    font-weight: bold;

    margin-bottom: 10px;

  }

  

  .category-list ul {

    list-style: none;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

    grid-gap: 20px;

  }

  

  /* Footer-Stile */

  footer {

    position: relative;

    background-color:blueviolet;

    color: #444;

    text-align: center;

    padding: 20px;

  }

  footer p{

    position: relative;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-size: 20px;

    color: white;

    left: 0;

    right: 0;

  }



  /*Login style*/

  .login1 {

    background-color: #F5A623;

    color: #fff;

    border: none;

    padding: 10px;

    border-radius: 5px;

    cursor: pointer;

  }

    

    .login2 {

      background-color: #F5A623;

      color: #fff;

      border: none;

      padding: 10px;

      border-radius: 5px;

      cursor: pointer;

    }