<style>
  body { 
    text-align: center;
    background: linear-gradient(to right, slateblue, lightblue);
    font-family: 'Trebuchet MS';
    color: white;
  }

  h2 {
    font-size: 24px;
  }

  a {
    background-color: white;
    font-size: 20px;
    color: slateblue;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    display: block;
    text-decoration: none;
  }

  /* Profil Resmi */
  img {
    border-radius: 75px;
    margin-top: 20px;
  }

  /* 📌 Dil Seçici Buton */
  .language-container {
    position: fixed;
    top: 10px;
    right: 10px;
    background: linear-gradient(to right, #4CAF50, #00bcd4); /* Mavi ve Turkuaz renk geçişi */
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
  }

  /* Bayrak Simgesi */
  .language-container .flag {
    font-size: 20px;
    margin-right: 10px;
  }

  /* Dil Seçici */
  .language-container select {
    background: transparent;
    border: none;
    color: white; /* Metin rengi beyaz */
    font-size: 16px;
    font-weight: bold;
    outline: none;
    padding-left: 10px;
    cursor: pointer;
  }

  /* Hover Efekti */
  .language-container:hover {
    background: linear-gradient(to right, #00bcd4, #4CAF50); /* Hoverda renk geçişi değişiyor */
    transition: 0.3s;
  }
</style>
