@charset "utf-8";
/* CSS Document */

.main {
    background-color: #2d2e37;
    display: flex;
    flex-direction: column; 
  }
  
  .threads {
    display: flex;
    flex-direction: column; 
  }
  
  .threads_text {
    font: 25px sans-serif;
    font-weight: bold;
    color: #9b99ff;
    line-height: 1.5;
    margin-left: 100px;
  }
  
  .threads_names {
    display: flex;
    flex-direction: row; 
    margin-left: 100px;
  }
  
  .thread_links {
  font: 18px serif;
  color: #d95e07;
  text-decoration: none;
  margin-left: 100px;
  }

  .thread_subnames {
  font: 22px serif;
  color: #ffffff;
  text-decoration: none;
  margin-left: 100px;
  }
  .threads_content{
    display: flex;
    flex-direction: row;
  }
  .threads_menu{
    display: flex;
    flex-direction: column;
  }
  .menu {
    width: 225px;
    background-color: #38394e;
    padding: 10px 20px;
    margin: auto auto;
    border: 1px solid #474966;
    margin-top: 20%;
  }
  .menu_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .menu_links{
    font: 18px serif;
    color: #d95e07;
    text-decoration: none;
  }

  @media (max-width: 440px) {
    .threads_text {
      margin-left: 20px;
      font-size: 22px;
      text-align: left;
    }
  
    .threads_names {
      flex-direction: column;
      margin-left: 20px;
      align-items: flex-start;
    }
  
    .threads_content {
      flex-direction: column;
      width: 100%;
    }
  
    .threads_menu {
      margin-left: 0;
      width: 100%;
    }
  
    .thread_links, .thread_subnames {
      margin-left: 20px;
      font-size: 16px;
    }
  
    .menu {
      width: 90%;
      margin-top: 10%;
      padding: 10px;
    }
  
    .menu_container {
      gap: 5px;
    }
  
    .menu_links {
      font-size: 16px;
    }
  
    img {
      width: 150px;
      height: auto;
      margin-bottom: 10px;
    }
  }