* {
    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;
  }


/* Navigation Section*/



/* Welcome Section*/

  #welcome {
    position: relative;
    display: flex;
    margin-top:100px;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 90vh;
    width: 99vw;
  
  }

  .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;

  }

  #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;

  }
  }

  .card img{
    object-fit: cover;
    height: 100%;
 }


   .content_text {
    margin: 30px; 
    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: 40vw;

    span {
      font-weight: 800;
    }
    .top {
    font-size: 1.5rem;
    font-weight: 600;
   }
      .top_date {
    font-size: 0.7rem;
    font-weight: 200;
   }
  }



   .content_text_2 {
    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: 25vw;
    span {
      font-weight: 800;
    }
        .top {
    font-size: 1.5rem;
    font-weight: 600;
   }

  }
  .content_text_2 a{
      background-image: linear-gradient(rgb(180,180,180), rgb(180,180,180)); /* Linienfarbe */
  background-position: bottom left;
  background-size: 0% 1px; /* Start: Breite 0 */
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-in-out;
  }  

  .content_text_2 a:hover{
     background-size: 100% 1px;
     color:rgb(200,200,200);

  }

  .appear-class{
     animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}



  @keyframes spin {
    from{
        translate: 0;
    }
    to{
        translate: -100%;
    }
  }


  @keyframes appear {
  from {
    opacity: 0;
    scale: 0.2;
  }
 to {
  opacity: 1;
  scale: 1;
 }
}         
@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 {
    margin: 10px; 

    padding: 10px;
    width: 90%;
   }
   .content_text_2 {
    margin-bottom: 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: 85vw;
    span {
      font-weight: 800;
    }
  }
}