header {
      background-color: #222;
      padding: 5px 16px;
      font-size: 25px;
    }

    nav{
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 0;
      padding: 0;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      color: rgb(49, 255, 245);
    }

    #mode-toggle {
      width: 30px;
      height: 30px;
      margin: 0;
      cursor: pointer;
      object-fit: contain;
    }

    .logo-cima {
      width: 90%;
      max-width: 100px;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
}

      nav ul {
        flex-direction: column;
        gap: 10px;
}

      header {
        font-size: 18px;
        padding: 10px;
        text-align: center;
}

      .logo-cima {
        max-width: 80px;
}

      #mode-toggle {
        width: 25px;
        height: 25px;
}
}