body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
  }

  .top-left-button {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: rgb(50, 50, 50);
    color: rgb(205,208,213);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .top-left-button:hover {
    background-color: rgb(5,50,50);
    transform: scale(1.15);
}
  
  section.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #333333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: 80%;
    margin: 20px auto;
  }
  
  .profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .about-text {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #e0e0e0;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #b0b0b0;
  }
  
  .channels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .channel {
    background-color: #444444;
    border: 1px solid #555;
    border-radius: 8px;
    overflow: hidden;
    width: 150px;
    text-align: center;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .channel:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .channel-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .channel-name {
    font-size: 1rem;
    font-weight: bold;
    color: #e0e0e0;
  }

  a {
    color: transparent;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }
  
  .social-icon {
    text-decoration: none;
    font-size: 1.2rem;
    color: #0099ff;
    transition: color 0.3s;
  }
  
  .social-icon:hover {
    color: #3399ff;
  }
  