/* Notes =======================*/
.container_1{
    width: 100%;
    min-height: 50vh;
    background: linear-gradient(135deg, #141414, #000000);
    color: #fff;
    padding-top: 0.5%;
    padding-left: 10%;
    padding-bottom: 2%;
    

}
.container_1 h1{
    padding-top: 8%;
    display: flex;
    align-items: center;
    font-size: 35px;
    font-weight: 600;
}


.container_1 button{
    display: flex;
    align-items: center;
    background: linear-gradient(#090909, #211c26);
    color: #fff;
    font-size: 16px;
    outline: 0;
    border: 0;
    border-radius: 40px;
    padding: 15px 25px;
    margin: 30px 0 20px;
    cursor: pointer;
    

}

.input-box{
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 150px;
    background: #ffffff2c;
    color: #000000;
    padding: 20px;
    margin: 20px 0;
    outline: none;
    border-radius: 5px;
    

}
.input-box img{
    width: 25px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}
.watch-link{
    position: fixed;
    bottom: 10%;
    right: 5%;
    font-size: 12px;
    text-decoration: none;
    color: #333;
}

/* End of Notes =======================*/

/* Blog =======================*/

.blog-container {
    background: rgba(9, 8, 8, 0.824);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 20px;
    padding-top: 4%;
    border-top: 5rem;
    gap: 5rem;
    margin-top: 150px;  /* Obere Abstand */
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    width: 90%;
    max-width: 800px;
    max-height: 600px;
    overflow-y: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 253, 253, 0.939);

  }

  
  .blog-container:hover {
    transform: scale(1.02); /* Leichte Vergrößerung beim Hover */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  }
 /* End of Blog =======================*/ 

 .btnSpeak {
    background-color: #0f1216;   /* Primärfarbe */
    color: #fff;                 /* Weißer Text */
    border: none;                /* Kein Rahmen */
    padding: 12px 24px;          /* Angenehme Klickfläche */
    border-radius: 5px;          /* Leicht abgerundete Ecken */
    font-size: 1rem;             /* Gute Lesbarkeit */
    cursor: pointer;             /* Cursor als Hand anzeigen */
    transition: background-color 0.3s ease, transform 0.3s ease;
 }

 .btnSpeak:hover {
    background-color: #1b2127;   /* Dunklere Variante bei Hover */
    transform: scale(1.05);      /* Leichte Vergrößerung beim Überfahren */
  }
