body {
    margin: 0;
    background: #1b1b1b;
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  strong{
  font-size:larger;
  text-shadow: 0 0 3px rgb(0 255 255 / 63%);
  }

  .lang-switcher {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: cyan;
    z-index: 1000;
  }
  
  .lang-btn {
    background: transparent;
    border: none;
    color: cyan;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
  }
  
  .lang-btn:hover {
    color: #00eaff;
  }
  
  .container {
    text-align: center;
  }
  
  .avatar img {
    width: 256px;
    height: 384px;
    image-rendering: auto;
    /* border-radius: 50%; */
    /* margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border: 3px solid cyan;
    background: radial-gradient(#022222, #000); */
  }
  .portfolio img {
    width: 384px;
    height: 256px;
    image-rendering: auto;
    /* border-radius: 50%; */
    /* margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border: 3px solid cyan;
    background: radial-gradient(#022222, #000); */
  }
  
  .dialogue-box {
    background: #2d2d2d;
    border: 4px solid cyan;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    /* box-shadow: 0 0 20px #000; */
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    
  }
  .about-box {
  text-align: left;
  
  }
  
  #typewriter {
    display: inline-block;
    margin-bottom: 2rem;
    height: 50px;
    margin: auto;
  }

  
  .choices {
    text-align: center;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
 
  .choice-btn {
    display: block;
    padding: 0.8rem 1rem;
    background: #00afc2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
  }
  
  .choice-btn:hover {
    transform: scale(1.05);
  }
  
  .about {
    display: flex;
    gap: 1rem; /* Butonlar arası boşluk */
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-btn {
    flex: 1 1 150px; /* Her buton en az 150px olur ve eşit şekilde büyür */
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
  }
  
  .about-btn:hover {
    transform: scale(1.05);
  }

  .portfolio-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .portfolio-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    background: #1b1b1b;
    border: 2px solid #00ffff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  }
  
  .portfolio-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    border: 2px solid #00ffff;
    background: #000;
  }
  
  .portfolio-content {
    flex: 1;
  }
  
  .portfolio-content h3 {
    margin: 0 0 0.5rem;
    color: #00ffff;
    font-size: 1rem;
  }
  
  .portfolio-content p {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    color: #ccc;
  }
  
  .portfolio-link {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    transition: transform 0.2s;
  }
  
  .portfolio-link:hover {
    transform: scale(1.05);
  }
  .portfolio-tag {
    display: inline-block;
    font-size: 0.65rem;
    background: #00ffff22;
    border: 1px solid #00ffff;
    color: #00ffff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (max-width: 600px) {
    .portfolio-item {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .portfolio-icon {
      margin-bottom: 0.5rem;
    }
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .contact-form label {
    font-size: 0.75rem;
    color: cyan;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    background: #1b1b1b;
    border: 2px solid #00ffff;
    padding: 0.5rem;
    color: white;
    font-family: 'Press Start 2P', monospace;
    border-radius: 4px;
    resize: vertical;
    font-size: 0.7rem;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #00eaff;
    box-shadow: 0 0 8px #00ffff55;
  }
  
  .contact-btn {
    padding: 0.75rem 1rem;
    background: #00afc2;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  
  .contact-btn:hover {
    transform: scale(1.05);
    background: #00eaff;
    color: black;
  }
    
  