* {
    margin: 0;
    padding: 0;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Arial", sans-serif;
    letter-spacing: 1px;
    width: 100%;
    animation: slideIn  ease forwards 3s;
    background-image: linear-gradient(to right, rgb(15,15,20),rgb(15,15,20),rgb(15,15,20),rgb(15,15,20),rgb(28,28,36));
    color: rgb(180,180,180);
  }
  
  html {
    scroll-behavior:smooth;
  }



/* Welcome Section*/

  #welcome {
    position: relative;
    display: flex;
    margin-top:100px;
    align-items: start;
    justify-content: center;
    min-height: 90vh;

    width: 99vw;

  }
  #welcome .title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: rgba(180,180,180,0.15);
    font-weight: 600;
    width: 90vw;
    text-align: center;
  margin-bottom: 20px;
  background-image: linear-gradient(rgba(180,180,180,0.15), rgba(180,180,180,0.15)); /* Linienfarbe */
  background-position: left;
  background-size: 100% 3px; /* Start: Breite 0 */
  background-repeat: no-repeat;
  
  .title-text{
    background-color: rgb(15,15,20);
    padding: 0 10px;
    font-size: 4rem;
    color: rgba(180,180,180,0.15);
    font-weight: 600;
    text-align: center;

  }
  }
  .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
  }
  #welcome .carousel {
    position: relative;
    width: 100%;
    height: 400px;
    display:flex;
    overflow-x: auto;  

  }
  .carousel::-webkit-scrollbar{
    display: none;
  }
  .group{
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 60s infinite linear;
  }


  .card {
    height: 100%;
    font-size: 3rem;
    border-radius: 5px;
    text-align: center;
    align-content: center;
    background-repeat: none;
    background-position: center;
    background-image: none;
    filter:grayscale(0.4);

  }


  .card img{
    object-fit: cover;
    height: 100%;
 }


   .content_text {
    margin: 50px; 
    background-color: rgba(15,15,20,0.95);
    border-radius: 10px;
    padding: 30px;
    box-shadow: rgba(180,180,180,0.15) 0px 0px 10px 0px;
        width: 90vw;
   }

   .content_text .top {
    font-size: 1.5rem;
    font-weight: 600;
   }


  @keyframes spin {
    from{
        translate: 0;
    }
    to{
        translate: -100%;
    }
  }

@media screen and (max-width: 800px) {
   #welcome {
    width: 95vw;
    font-size: 14px;
  }
  .content {
    width: 100%;
  }
      #welcome .title {
  background-image: none;

  .title-text{
    background-color: transparent;
    font-size: 2.3rem;


  }
  }
   .content_text {
    width: 80vw;
   }
  #welcome .carousel {
    height: 300px;
  }
  }